{"version":3,"file":"NotificationPresenterModule.types.js","sourceRoot":"","sources":["../src/NotificationPresenterModule.types.ts"],"names":[],"mappings":"","sourcesContent":["import { ProxyNativeModule } from 'expo-modules-core';\n\nimport { Notification, NotificationContentInput } from './Notifications.types';\n\nexport interface NotificationPresenterModule extends ProxyNativeModule {\n getPresentedNotificationsAsync?: () => Promise;\n presentNotificationAsync?: (\n identifier: string,\n content: NotificationContentInput\n ) => Promise;\n dismissNotificationAsync?: (identifier: string) => Promise;\n dismissAllNotificationsAsync?: () => Promise;\n}\n"]}