UNPKG

expo-notifications

Version:

Provides an API to fetch push notification tokens and to present, schedule, receive, and respond to notifications.

6 lines 289 B
import { ProxyNativeModule } from 'expo-modules-core'; export interface PushTokenManagerModule extends ProxyNativeModule { getDevicePushTokenAsync?: () => Promise<string>; unregisterForNotificationsAsync?: () => Promise<void>; } //# sourceMappingURL=PushTokenManager.types.d.ts.map