UNPKG

430 BTypeScriptView Raw
1/**
2 * Returns whether the AdMob API is enabled on the current device. This does not check the native configuration.
3 *
4 * @returns Async `boolean`, indicating whether the AdMob API is available on the current device. Currently this resolves `true` on iOS and Android only.
5 */
6export declare function isAvailableAsync(): Promise<boolean>;
7export declare function setTestDeviceIDAsync(testDeviceID: string | null): Promise<void>;