react-native-google-mobile-ads
Version:
React Native Google Mobile Ads is an easy way to monetize mobile apps with targeted, in-app advertising.
22 lines (21 loc) • 1.14 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.RevenuePrecisions = void 0;
var _reactNative = require("react-native");
var _NativeModules$RNAppM, _NativeModules$RNAppM2;
const {
REVENUE_PRECISION_ESTIMATED,
REVENUE_PRECISION_PRECISE,
REVENUE_PRECISION_PUBLISHER_PROVIDED,
REVENUE_PRECISION_UNKNOWN
} = ((_NativeModules$RNAppM = (_NativeModules$RNAppM2 = _reactNative.NativeModules.RNAppModule).getConstants) === null || _NativeModules$RNAppM === void 0 ? void 0 : _NativeModules$RNAppM.call(_NativeModules$RNAppM2)) ?? {};
let RevenuePrecisions = exports.RevenuePrecisions = /*#__PURE__*/function (RevenuePrecisions) {
RevenuePrecisions[RevenuePrecisions["ESTIMATED"] = REVENUE_PRECISION_ESTIMATED] = "ESTIMATED";
RevenuePrecisions[RevenuePrecisions["PRECISE"] = REVENUE_PRECISION_PRECISE] = "PRECISE";
RevenuePrecisions[RevenuePrecisions["PUBLISHER_PROVIDED"] = REVENUE_PRECISION_PUBLISHER_PROVIDED] = "PUBLISHER_PROVIDED";
RevenuePrecisions[RevenuePrecisions["UNKNOWN"] = REVENUE_PRECISION_UNKNOWN] = "UNKNOWN";
return RevenuePrecisions;
}({});
//# sourceMappingURL=constants.js.map