import { ProxyNativeModule } from 'expo-modules-core'; export interface BackgroundNotificationTasksModule extends ProxyNativeModule { registerTaskAsync: (taskName: string) => Promise; unregisterTaskAsync: (taskName: string) => Promise; } export enum BackgroundNotificationResult { NoData = 1, NewData = 2, Failed = 3, }