1{"version":3,"file":"NotificationsHandlerModule.js","sourceRoot":"","sources":["../src/NotificationsHandlerModule.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAqB,MAAM,kBAAkB,CAAC;AAWzE,eAAgB,kBAAkB,CAAC,8BAAoE,CAAC","sourcesContent":["import { NativeModulesProxy, ProxyNativeModule } from '@unimodules/core';\n\nimport { NotificationBehavior } from './Notifications.types';\n\nexport interface NotificationsHandlerModule extends ProxyNativeModule {\n handleNotificationAsync: (\n notificationId: string,\n notificationBehavior: NotificationBehavior\n ) => Promise<void>;\n}\n\nexport default (NativeModulesProxy.ExpoNotificationsHandlerModule as any) as NotificationsHandlerModule;\n"]}