UNPKG

@kode-frontend/react-native-push-notification

Version:
12 lines (9 loc) 308 B
import { FirebaseMessagingTypes } from '@react-native-firebase/messaging' export type TPushNotificationBody<T = Record<string, any>> = { id?: string title?: string body?: string data?: T } export type TFirebaseRemoteMessage = FirebaseMessagingTypes.RemoteMessage & Partial<TPushNotificationBody>