UNPKG

ironsource-mediation

Version:

IronSource ad mediation React-Native plugin. Monetize apps with rewarded video, interstitial, banner, and native ads.

18 lines (17 loc) 615 B
/** * Interface for handling Initialization events * @deprecated this interface is deprecated and will be removed in version 4.0.0. * Use the new `LevelPlayInitListener` interface instead. */ export interface InitializationListener { /** * InitializationListener Callback Events Handler APIs */ /** * The listener will be called on the first SDK init completion. * Android: onInitializationComplete * iOS: initializationDidComplete * * @deprecated this method is deprecated and will be removed in version 4.0.0. */ onInitializationComplete?: () => void; }