UNPKG

expo-ads-facebook

Version:
15 lines 414 B
import { NativeModulesProxy } from 'expo-modules-core'; const { CTKInterstitialAdManager = { async showAd() { return false; }, }, } = NativeModulesProxy; export default { /** * Shows interstitial ad for a given placementId */ async showAd(placementId) { return await CTKInterstitialAdManager.showAd(placementId); }, }; //# sourceMappingURL=InterstitialAdManager.js.map