UNPKG

expo-notifications

Version:

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

6 lines 370 B
import { ProxyNativeModule } from 'expo-modules-core'; import { NotificationBehavior } from './Notifications.types'; export interface NotificationsHandlerModule extends ProxyNativeModule { handleNotificationAsync?: (notificationId: string, notificationBehavior: NotificationBehavior) => Promise<void>; } //# sourceMappingURL=NotificationsHandlerModule.types.d.ts.map