mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-22 01:19:36 +08:00
Merge branch 'master' of github.com:driftyco/ionic-native
This commit is contained in:
commit
92e0bb55c3
@ -205,7 +205,7 @@ export class BLE {
|
|||||||
@Cordova({
|
@Cordova({
|
||||||
observable: true,
|
observable: true,
|
||||||
clearFunction: 'stopScan',
|
clearFunction: 'stopScan',
|
||||||
clearWithArgs: true
|
clearWithArgs: false
|
||||||
})
|
})
|
||||||
static startScan(services: string[]): Observable<any> { return; }
|
static startScan(services: string[]): Observable<any> { return; }
|
||||||
|
|
||||||
@ -218,7 +218,7 @@ export class BLE {
|
|||||||
@Cordova({
|
@Cordova({
|
||||||
observable: true,
|
observable: true,
|
||||||
clearFunction: 'stopScan',
|
clearFunction: 'stopScan',
|
||||||
clearWithArgs: true
|
clearWithArgs: false
|
||||||
})
|
})
|
||||||
static startScanWithOptions(services: string[], options: {reportDuplicates?: boolean} | any): Observable<any> { return; }
|
static startScanWithOptions(services: string[], options: {reportDuplicates?: boolean} | any): Observable<any> { return; }
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ export interface OSNotification {
|
|||||||
* **ANDROID** - Notification is a summary notification for a group this will contain all notification payloads it was created from.
|
* **ANDROID** - Notification is a summary notification for a group this will contain all notification payloads it was created from.
|
||||||
*/
|
*/
|
||||||
groupedNotifications?: OSNotificationPayload[];
|
groupedNotifications?: OSNotificationPayload[];
|
||||||
app_id: string;
|
app_id?: string;
|
||||||
contents: any;
|
contents: any;
|
||||||
headings?: any;
|
headings?: any;
|
||||||
isIos?: boolean;
|
isIos?: boolean;
|
||||||
|
@ -21,7 +21,7 @@ declare var sqlitePlugin;
|
|||||||
* })
|
* })
|
||||||
* .then((db: SQLite) => {
|
* .then((db: SQLite) => {
|
||||||
*
|
*
|
||||||
* db.executeSql('create table danceMoves(name VARCHAR(32))').then(() => {}).catch(() => {});
|
* db.executeSql('create table danceMoves(name VARCHAR(32))', {}).then(() => {}).catch(() => {});
|
||||||
*
|
*
|
||||||
* })
|
* })
|
||||||
* .catch(error => console.error('Error opening database', error);
|
* .catch(error => console.error('Error opening database', error);
|
||||||
|
Loading…
Reference in New Issue
Block a user