-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtinymessage.d.ts
41 lines (26 loc) · 1.3 KB
/
tinymessage.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
export interface MessageObject {
show: () => void;
updateContent: (content:string) => void;
destroy: () => void;
}
export interface ModalBoxConfig {
icon?: string,
content?: string,
okText?: string,
okClick?: (e?: any) => void,
cancelText?: string,
cancelClick?: (e?: any) => void,
}
export declare function setUseFrameProxy(isSend?: boolean, isListen?: boolean): void;
export declare function info(content: string, duration?: number): MessageObject;
export declare function success(content: string, duration?: number): MessageObject;
export declare function error(content: string, duration?: number): MessageObject;
export declare function warn(content: string, duration?: number): MessageObject;
export declare function warning(content: string, duration?: number): MessageObject;
export declare function loading(content: string, duration?: number): MessageObject;
export declare function destroy(): void;
export declare function toastSuccess(content: string, duration?: number): void;
export declare function toastLoading(content: string, duration?: number): void;
export declare function toast(content: string, duration?: number, animationClass?: string): void;
export declare function showModalBox(config: ModalBoxConfig): void;
export declare function hideModalBox(): void;