UNPKG

239 BTypeScriptView Raw
1export declare class Toast {
2 type: string;
3 message: string;
4 title: string;
5 data: Object;
6 id: number;
7 config: any;
8 timeoutId: any;
9 constructor(type: string, message: string, title?: string, data?: Object);
10}