UNPKG

393 BTypeScriptView Raw
1import { FlashMessageInterface } from './flash-message.interface';
2export declare class FlashMessage implements FlashMessageInterface {
3 static nextId: number;
4 id: number;
5 text: string;
6 cssClass: string;
7 closeOnClick: boolean;
8 showCloseBtn: boolean;
9 timer: number;
10 constructor(text?: string, cssClass?: string, closeOnClick?: boolean, showCloseBtn?: boolean);
11}