UNPKG

expo-notifications

Version:

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

8 lines (5 loc) 274 B
import { ProxyNativeModule } from 'expo-modules-core'; import { NotificationResponse } from './Notifications.types'; export interface NotificationsEmitterModule extends ProxyNativeModule { getLastNotificationResponseAsync?: () => Promise<NotificationResponse | null>; }