UNPKG

208 BTypeScriptView Raw
1export interface Message {
2 severity?: string;
3 summary?: string;
4 detail?: string;
5 id?: any;
6 key?: string;
7 life?: number;
8 sticky?: boolean;
9 closable?: boolean;
10 data?: any;
11}