Use this file to discover all available pages before exploring further.
import { InterstitialAd } from 'admob-plus-cordova'const interstitial = new InterstitialAd({ adUnitId: 'ca-app-pub-xxx/yyy'})await interstitial.load()await interstitial.show()
InterstitialAd displays full-screen ads that cover the interface of the app. They are typically displayed at natural transition points, such as between game levels or after completing a task.
const interstitial = new InterstitialAd({ adUnitId: 'ca-app-pub-xxx/yyy'})interstitial.on('load', () => { console.log('Interstitial loaded and ready to show')})interstitial.on('dismiss', () => { console.log('User dismissed the interstitial') // Load the next ad interstitial.load()})interstitial.on('show', () => { console.log('Interstitial is now showing')})interstitial.on('showfail', (event) => { console.error('Failed to show interstitial', event.error)})await interstitial.load()