UNPKG

expo-notifications

Version:

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

7 lines 370 B
import { ProxyNativeModule } from 'expo-modules-core'; import { NotificationResponse } from './Notifications.types'; export interface NotificationsEmitterModule extends ProxyNativeModule { getLastNotificationResponse?: () => NotificationResponse | null; clearLastNotificationResponse?: () => void; } //# sourceMappingURL=NotificationsEmitterModule.types.d.ts.map