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) • 318 B
text/typescript
import { MobileAd, type MobileAdOptions } from "./base";
export class InterstitialAd extends MobileAd<MobileAdOptions> {
static readonly cls = "InterstitialAd";
public isLoaded() {
return super.isLoaded();
}
public load() {
return super.load();
}
public show() {
return super.show();
}
}