matrix-react-sdk
Version:
SDK for matrix.org using React
9 lines (8 loc) • 501 B
TypeScript
import { NotificationColor } from "./NotificationColor";
import { NotificationState } from "./NotificationState";
export declare class StaticNotificationState extends NotificationState {
static readonly RED_EXCLAMATION: StaticNotificationState;
constructor(symbol: string, count: number, color: NotificationColor);
static forCount(count: number, color: NotificationColor): StaticNotificationState;
static forSymbol(symbol: string, color: NotificationColor): StaticNotificationState;
}