9 lines
308 B
TypeScript
9 lines
308 B
TypeScript
|
import {requireNativeModule} from 'expo-modules-core'
|
||
|
|
||
|
import {ExpoBackgroundNotificationHandlerModule} from './ExpoBackgroundNotificationHandler.types'
|
||
|
|
||
|
export const BackgroundNotificationHandler =
|
||
|
requireNativeModule<ExpoBackgroundNotificationHandlerModule>(
|
||
|
'ExpoBackgroundNotificationHandler',
|
||
|
)
|