@elemental-design/expo-notifications
Version:
8 lines (7 loc) • 383 B
TypeScript
import { ProxyNativeModule } from '@unimodules/core';
import { NotificationBehavior } from './Notifications.types';
export interface NotificationsHandlerModule extends ProxyNativeModule {
handleNotificationAsync: (notificationId: string, notificationBehavior: NotificationBehavior) => Promise<void>;
}
declare const _default: NotificationsHandlerModule;
export default _default;