UNPKG

expo

Version:
15 lines (11 loc) 308 B
/* @flow */ import { NativeModules } from 'react-native'; const { CTKInterstitialAdManager } = NativeModules; export default { /** * Shows interstitial ad for a given placementId */ showAd(placementId: string): Promise<boolean> { return CTKInterstitialAdManager.showAd(placementId); }, };