admob-plus-cordova
Version:
Trustable Google AdMob Cordova Plugin, successor of cordova-plugin-admob-free. Unlike some Cordova AdMob plugins, no ad-sharing, free to use. TypeScript friendly. Compatible with Ionic. admob-plus-cordova is one of the most popular Cordova AdMob plugins.
18 lines (13 loc) • 327 B
text/typescript
import { MobileAd, type MobileAdOptions } from "./base";
export class AppOpenAd extends MobileAd<MobileAdOptions> {
static readonly cls = "AppOpenAd";
public isLoaded() {
return super.isLoaded();
}
public load() {
return super.load();
}
async show() {
return super.show() as Promise<boolean>;
}
}