You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
422 B
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; |
|
};
|
|
|