UNPKG

react-native-notifications

Version:

Advanced Push Notifications (Silent, interactive notifications) for iOS & Android

15 lines (14 loc) 436 B
import { Commands } from './commands/Commands'; import { NotificationChannel } from './interfaces/NotificationChannel'; export declare class NotificationsAndroid { private readonly commands; constructor(commands: Commands); /** * Refresh FCM token */ registerRemoteNotifications(): void; /** * setNotificationChannel */ setNotificationChannel(notificationChannel: NotificationChannel): void; }