react-native-notifications
Version:
Advanced Push Notifications (Silent, interactive notifications) for iOS & Android
15 lines (14 loc) • 367 B
TypeScript
export interface NotificationChannel {
channelId: string;
name: string;
importance: -1000 | 0 | 1 | 2 | 3 | 4 | 5;
description?: string;
enableLights?: boolean;
enableVibration?: boolean;
groupId?: string;
groupName?: string;
lightColor?: string;
showBadge?: boolean;
soundFile?: string;
vibrationPattern?: number[];
}