master
ts 17 lines 250 Bytes
Raw
1 import { MobileAd } from "./common";
2
3 export class InterstitialAd extends MobileAd {
4 static cls = "InterstitialAd";
5
6 isLoaded() {
7 return super.isLoaded();
8 }
9
10 async load() {
11 return super.load();
12 }
13
14 async show() {
15 return super.show();
16 }
17 }