UNPKG

308 BJavaScriptView Raw
1/* @flow */
2
3import { NativeModules } from 'react-native';
4
5const { CTKInterstitialAdManager } = NativeModules;
6
7export default {
8 /**
9 * Shows interstitial ad for a given placementId
10 */
11 showAd(placementId: string): Promise<boolean> {
12 return CTKInterstitialAdManager.showAd(placementId);
13 },
14};