UNPKG

ironsource-mediation

Version:

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

33 lines (32 loc) 1.08 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AdFormat = void 0; /** * Enumeration representing different ad formats in the LevelPlay mediation network. */ let AdFormat = exports.AdFormat = /*#__PURE__*/function (AdFormat) { /** * Banner ad format. * Typically a rectangular ad that spans the width of the screen or is fixed in a specific area of an app's layout. */ AdFormat["BANNER"] = "BANNER"; /** * Interstitial ad format. * Full-screen ads that cover the interface of their host app, typically displayed at natural transition points. */ AdFormat["INTERSTITIAL"] = "INTERSTITIAL"; /** * Rewarded ad format. * Users have the option to engage with a full-screen ad in exchange for a reward, such as in-game currency or extra lives. */ AdFormat["REWARDED"] = "REWARDED"; /** * Native ad format. * Ads that match the look, feel, and function of the media format in which they appear. */ AdFormat["NATIVE_AD"] = "NATIVE_AD"; return AdFormat; }({}); //# sourceMappingURL=AdFormat.js.map