expo-notifications
Version:
Provides an API to fetch push notification tokens and to present, schedule, receive, and respond to notifications.
6 lines • 336 B
TypeScript
import { ProxyNativeModule } from 'expo-modules-core';
import { NotificationResponse } from './Notifications.types';
export interface NotificationsEmitterModule extends ProxyNativeModule {
getLastNotificationResponseAsync?: () => Promise<NotificationResponse | null>;
}
//# sourceMappingURL=NotificationsEmitterModule.types.d.ts.map