expo
Version:
The Expo SDK
15 lines (11 loc) • 308 B
JavaScript
/* @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);
},
};