UNPKG

expo-quest-notifications

Version:

A fork of [`expo-notifications`](https://github.com/expo/expo/tree/main/packages/expo-notifications) that provides two implementations: - The default `expo-notifications` for Android and iOS platforms. - A Meta Quest-compatible implementation that uses th

17 lines 688 B
import 'abort-controller/polyfill'; /** * Encapsulates device server registration data */ export type DevicePushTokenRegistration = { isEnabled: boolean; }; /** * @hidden - the comment is misleading and the purpose of the function needs to be reevaluated * * Sets the registration information so that the device push token gets pushed * to the given registration endpoint * @param enabled */ export declare function setAutoServerRegistrationEnabledAsync(enabled: boolean): Promise<void>; export declare function __handlePersistedRegistrationInfoAsync(registrationInfo: string | null | undefined): Promise<void>; //# sourceMappingURL=DevicePushTokenAutoRegistration.fx.d.ts.map