UNPKG

react-native-google-mobile-ads

Version:

React Native Google Mobile Ads is an easy way to monetize mobile apps with targeted, in-app advertising.

21 lines 636 B
export declare enum GAMAdEventType { /** * An event fired when the ad received Ad Manager specific app event. * * The app event contains a `name` and `data`. `data` could be undefeined. * * #### Example * * ```js * import { GAMAdEventType } from 'react-native-google-mobile-ads'; * * interstitialAd.onAdEvent((type, error, data) => { * if (type === GAMAdEventType.APP_EVENT) { * console.log(`Received app event: ${data.name} with data: ${data.data}`); * } * }); * ``` */ APP_EVENT = "app_event" } //# sourceMappingURL=GAMAdEventType.d.ts.map