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 (18 loc) 449 B
export enum InitializationState { /** * The mediation adapter is less likely to fill ad requests. */ AdapterInitializationStateNotReady = 0, /** * The mediation adapter is ready to service ad requests. */ AdapterInitializationStateReady = 1, } /** * An immutable snapshot of a mediation adapter's initialization status. */ export type AdapterStatus = { name: string; description: string; state: InitializationState; };