Trigger full-screen Interstitial or Video Rewarded ads programmatically.
Trigger full-screen native Google AdMob interstitial and rewarded video ads programmatically from your web application. Ads are preloaded by the native SDK for instant display.
import nativine from 'nativine';
await nativine.ads.showInterstitial();
Displays a rewarded video ad. Returns the reward details when the user completes viewing:
import nativine from 'nativine';
const { rewarded, amount } = await nativine.ads.showRewarded();
rewarded — true if the user watched the full video.amount — The reward amount configured in your AdMob dashboard.