expo-notifications
Version:
Provides an API to fetch push notification tokens and to present, schedule, receive, and respond to notifications.
9 lines (6 loc) • 306 B
text/typescript
import { ProxyNativeModule } from 'expo-modules-core';
import { NotificationResponse } from './Notifications.types';
export interface NotificationsEmitterModule extends ProxyNativeModule {
getLastNotificationResponse?: () => NotificationResponse | null;
clearLastNotificationResponse?: () => void;
}