react-native-notifications
Version:
Advanced Push Notifications (Silent, interactive notifications) for iOS & Android
14 lines • 386 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;
}