react-native-notifications-patched-rayen
Version:
Advanced Push Notifications (Silent, interactive notifications) for iOS & Android
14 lines • 399 B
text/typescript
export interface NotificationPermissionOptions {
carPlay?: boolean;
criticalAlert?: boolean;
providesAppNotificationSettings?: boolean;
provisional?: boolean;
announcement?: boolean;
}
export interface NotificationPermissions extends NotificationPermissionOptions {
badge: boolean;
alert: boolean;
sound: boolean;
notificationCenter: boolean;
lockScreen: boolean;
}