Merge branch 'master' of github.com:driftyco/ionic-native
This commit is contained in:
commit
c94dd41f92
@ -95,7 +95,7 @@ export interface AdExtras {
|
|||||||
* Plugin for Google Ads, including AdMob / DFP (doubleclick for publisher) and mediations to other Ad networks.
|
* Plugin for Google Ads, including AdMob / DFP (doubleclick for publisher) and mediations to other Ad networks.
|
||||||
* @usage
|
* @usage
|
||||||
* ```typescript
|
* ```typescript
|
||||||
* import { AdMob, AdMobOptions, AdSize, AdExtras } from '@ionic-native/ad-mob';
|
* import { AdMob, AdMobOptions, AdSize, AdExtras } from '@ionic-native/admob';
|
||||||
*
|
*
|
||||||
* constructor(private admob: AdMob){}
|
* constructor(private admob: AdMob){}
|
||||||
*
|
*
|
||||||
|
@ -49,18 +49,17 @@ export interface IntelSecurityDataOptions {
|
|||||||
* let storageID = 'id';
|
* let storageID = 'id';
|
||||||
*
|
*
|
||||||
* this.intelSecurity.data.createFromData({ data: 'Sample Data' })
|
* this.intelSecurity.data.createFromData({ data: 'Sample Data' })
|
||||||
* .then((instanceID: Number) => this.IntelSecurity.storage.write({ id: storageId, instanceID: instanceID }))
|
* .then((instanceID: Number) => this.intelSecurity.storage.write({ id: storageId, instanceID: instanceID }))
|
||||||
* .catch((error: any) => console.log(error));
|
* .catch((error: any) => console.log(error));
|
||||||
*
|
*
|
||||||
* this.intelSecurity.storage.read({id: storageID })
|
* this.intelSecurity.storage.read({id: storageID })
|
||||||
* .then(this.intelSecurity.data.getData)
|
* .then((instanceID: number) => this.intelSec.data.getData(instanceID))
|
||||||
* .then((data: string) => console.log(data)) // Resolves to 'Sample Data'
|
* .then((data: string) => console.log(data)) // Resolves to 'Sample Data'
|
||||||
* .catch((error: any) => console.log(error));
|
* .catch((error: any) => console.log(error));
|
||||||
*
|
*
|
||||||
* this.intelSecurity.storage.delete({ id: storageID })
|
* this.intelSecurity.storage.delete({ id: storageID })
|
||||||
* .then(() => console.log('Deleted Successfully'))
|
* .then(() => console.log('Deleted Successfully'))
|
||||||
* .catch((error: any) => console.log(error));
|
* .catch((error: any) => console.log(error));
|
||||||
*
|
|
||||||
* ```
|
* ```
|
||||||
* @classes
|
* @classes
|
||||||
* IntelSecurityData
|
* IntelSecurityData
|
||||||
|
Loading…
x
Reference in New Issue
Block a user