fineui是帆软报表和BI产品线所使用的前端框架。
 
 
 

6 lines
422 B

export declare type _msg = {
alert: (title: string, message?: string, callback?: (result?: boolean) => void) => void;
confirm: (title: string, message?: string, callback?: (result: boolean) => void) => void;
prompt: (title: string, message?: string, value?: any, callback?: (result: string) => void, minWidth?: number) => void;
toast: (message: string, options?: object, context?: HTMLElement) => void;
};