matrix-react-sdk
Version:
SDK for matrix.org using React
10 lines (9 loc) • 322 B
TypeScript
export declare enum NotificationLevel {
Muted = 0,
None = 1,// nothing special
Activity = 2,// no badge, show as unread
Notification = 3,// unread notified messages
Highlight = 4,// unread pings
Unsent = 5
}
export declare function humanReadableNotificationLevel(level: NotificationLevel): string;