react-native-appodeal
Version:
React Native Module created to support Appodeal SDK for iOS and Android platforms
35 lines (32 loc) • 1.02 kB
JavaScript
;
/**
* Appodeal Ad Types
*
* Contains all ad-related type definitions including ad types, revenue tracking,
* and ad unit information.
*/
/**
* Ad type bit flags for combining multiple ad types
* Use bitwise OR (|) to combine multiple ad types
*/
export let AppodealAdType = /*#__PURE__*/function (AppodealAdType) {
AppodealAdType[AppodealAdType["NONE"] = 0] = "NONE";
AppodealAdType[AppodealAdType["INTERSTITIAL"] = 1] = "INTERSTITIAL";
// 1
AppodealAdType[AppodealAdType["BANNER"] = 4] = "BANNER";
// 4
AppodealAdType[AppodealAdType["BANNER_BOTTOM"] = 8] = "BANNER_BOTTOM";
// 8
AppodealAdType[AppodealAdType["BANNER_TOP"] = 16] = "BANNER_TOP";
// 16
AppodealAdType[AppodealAdType["REWARDED_VIDEO"] = 32] = "REWARDED_VIDEO";
// 32
AppodealAdType[AppodealAdType["MREC"] = 256] = "MREC";
// 256
AppodealAdType[AppodealAdType["ALL"] = 317] = "ALL";
return AppodealAdType;
}({});
/**
* Ad revenue information for analytics
*/
//# sourceMappingURL=AppodealAdTypes.js.map