UNPKG

@nativescript/google-mobile-ads

Version:
46 lines 1.67 kB
export var AdsConsentStatus; (function (AdsConsentStatus) { AdsConsentStatus[AdsConsentStatus["REQUIRED"] = 0] = "REQUIRED"; AdsConsentStatus[AdsConsentStatus["NOT_REQUIRED"] = 1] = "NOT_REQUIRED"; AdsConsentStatus[AdsConsentStatus["OBTAINED"] = 2] = "OBTAINED"; AdsConsentStatus[AdsConsentStatus["UNKNOWN"] = 3] = "UNKNOWN"; })(AdsConsentStatus || (AdsConsentStatus = {})); export var AdsConsentDebugGeography; (function (AdsConsentDebugGeography) { AdsConsentDebugGeography[AdsConsentDebugGeography["DISABLED"] = 0] = "DISABLED"; AdsConsentDebugGeography[AdsConsentDebugGeography["EEA"] = 1] = "EEA"; AdsConsentDebugGeography[AdsConsentDebugGeography["NOT_EEA"] = 2] = "NOT_EEA"; })(AdsConsentDebugGeography || (AdsConsentDebugGeography = {})); export class AdsConsentBase { static isConsentFormAvailable() { throw new Error('unimplemented'); } static loadForm() { return Promise.reject('unimplemented'); } static setForceTesting(force) { throw new Error('unimplemented'); } static reset() { throw new Error('unimplemented'); } static addTestDevices(deviceIds) { throw new Error('unimplemented'); } static getStatus() { throw new Error('unimplemented'); } static requestInfoUpdate() { return Promise.reject('unimplemented'); } static setDebugGeography(geography) { throw new Error('unimplemented'); } static setTagForUnderAgeOfConsent(tag) { throw new Error('unimplemented'); } static showForm() { return Promise.reject('unimplemented'); } } //# sourceMappingURL=common.js.map