blob: d6517893adc76bfc0bd9bfcd3ef20c6cc92adc7f (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import {requireNativeModule} from 'expo-modules-core'
import {ExpoBackgroundNotificationHandlerModule} from './ExpoBackgroundNotificationHandler.types'
export const BackgroundNotificationHandler =
requireNativeModule<ExpoBackgroundNotificationHandlerModule>(
'ExpoBackgroundNotificationHandler',
)
|