UNPKG

@react-native-firebase/messaging

Version:

React Native Firebase - React Native Firebase provides native integration of Firebase Cloud Messaging (FCM) for both Android & iOS. FCM is a cost free service, allowing for server-device and device-device communication. The React Native Firebase Messaging

14 lines 435 B
import type { RemoteMessage } from './types/messaging'; interface RemoteMessageOptions { to: string; messageId: string; ttl: number; data: { [key: string]: string; }; collapseKey?: string; messageType?: string; } export default function remoteMessageOptions(messagingSenderId: string, remoteMessage: RemoteMessage): RemoteMessageOptions; export {}; //# sourceMappingURL=remoteMessageOptions.d.ts.map