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.
21 lines (15 loc) • 443 B
text/typescript
import { MobileAd } from "./base";
import type { RewardedAdOptions } from "./rewarded";
export type RewardedInterstitialAdOptions = RewardedAdOptions;
export class RewardedInterstitialAd extends MobileAd<RewardedInterstitialAdOptions> {
static readonly cls = "RewardedInterstitialAd";
public isLoaded() {
return super.isLoaded();
}
public load() {
return super.load();
}
public show() {
return super.show();
}
}