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.
10 lines (9 loc) • 390 B
TypeScript
import { MobileAd } from "./base";
import type { RewardedAdOptions } from "./rewarded";
export type RewardedInterstitialAdOptions = RewardedAdOptions;
export declare class RewardedInterstitialAd extends MobileAd<RewardedInterstitialAdOptions> {
static readonly cls = "RewardedInterstitialAd";
isLoaded(): Promise<boolean>;
load(): Promise<void>;
show(): Promise<unknown>;
}