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