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 • 514 B
TypeScript
/**
* AdsConsentStatus enum.
*/
export declare enum AdsConsentStatus {
/**
* Unknown consent status, AdsConsent.requestInfoUpdate needs to be called to update it.
*/
UNKNOWN = "UNKNOWN",
/**
* User consent required but not yet obtained.
*/
REQUIRED = "REQUIRED",
/**
* User consent not required.
*/
NOT_REQUIRED = "NOT_REQUIRED",
/**
* User consent already obtained.
*/
OBTAINED = "OBTAINED"
}
//# sourceMappingURL=AdsConsentStatus.d.ts.map