docs(admob-free): improve docs
This commit is contained in:
parent
c1082b1c14
commit
da5266cd65
@ -96,6 +96,14 @@ export interface AdMobFreeRewardVideoConfig {
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* ```
|
* ```
|
||||||
|
* @interfaces
|
||||||
|
* AdMobFreeBannerConfig
|
||||||
|
* AdMobFreeInterstitialConfig
|
||||||
|
* AdMobFreeRewardVideoConfig
|
||||||
|
* @classes
|
||||||
|
* AdMobFreeBanner
|
||||||
|
* AdMobFreeInterstitial
|
||||||
|
* AdMobFreeRewardVideo
|
||||||
*/
|
*/
|
||||||
@Plugin({
|
@Plugin({
|
||||||
pluginName: 'AdMobFree',
|
pluginName: 'AdMobFree',
|
||||||
@ -108,9 +116,10 @@ export interface AdMobFreeRewardVideoConfig {
|
|||||||
export class AdMobFree extends IonicNativePlugin {
|
export class AdMobFree extends IonicNativePlugin {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convenience constructor to get event names
|
* Convenience object to get event names
|
||||||
|
* @type {Object}
|
||||||
*/
|
*/
|
||||||
events = {
|
events: any = {
|
||||||
BANNER_LOAD: 'admob.banner.events.LOAD',
|
BANNER_LOAD: 'admob.banner.events.LOAD',
|
||||||
BANNER_LOAD_FAIL: 'admob.banner.events.LOAD_FAIL',
|
BANNER_LOAD_FAIL: 'admob.banner.events.LOAD_FAIL',
|
||||||
BANNER_OPEN: 'admob.banner.events.OPEN',
|
BANNER_OPEN: 'admob.banner.events.OPEN',
|
||||||
@ -142,19 +151,19 @@ export class AdMobFree extends IonicNativePlugin {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* Returns the AdMobFreeBanner object
|
||||||
* @type {AdMobFreeBanner}
|
* @type {AdMobFreeBanner}
|
||||||
*/
|
*/
|
||||||
banner: AdMobFreeBanner = new AdMobFreeBanner();
|
banner: AdMobFreeBanner = new AdMobFreeBanner();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* Returns the AdMobFreeInterstitial object
|
||||||
* @type {AdMobFreeInterstitial}
|
* @type {AdMobFreeInterstitial}
|
||||||
*/
|
*/
|
||||||
interstitial: AdMobFreeInterstitial = new AdMobFreeInterstitial();
|
interstitial: AdMobFreeInterstitial = new AdMobFreeInterstitial();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* Returns the AdMobFreeRewardVideo object
|
||||||
* @type {AdMobFreeRewardVideo}
|
* @type {AdMobFreeRewardVideo}
|
||||||
*/
|
*/
|
||||||
rewardVideo: AdMobFreeRewardVideo = new AdMobFreeRewardVideo();
|
rewardVideo: AdMobFreeRewardVideo = new AdMobFreeRewardVideo();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user