|
|
@ -2,5 +2,5 @@ export type _msg = { |
|
|
|
alert: (title: string, message?: string | {[key: string]: any}, callback?: (result?: boolean)=>void) => void |
|
|
|
alert: (title: string, message?: string | {[key: string]: any}, callback?: (result?: boolean)=>void) => void |
|
|
|
confirm: (title: string, message?: string | {[key: string]: any}, callback?: (result: boolean)=>void) => void |
|
|
|
confirm: (title: string, message?: string | {[key: string]: any}, callback?: (result: boolean)=>void) => void |
|
|
|
prompt: (title: string, message?: string, value?: any, callback?: (result: string) => void, minWidth?: number) => void |
|
|
|
prompt: (title: string, message?: string, value?: any, callback?: (result: string) => void, minWidth?: number) => void |
|
|
|
toast: (message: string, options?: object, context?: HTMLElement) => void |
|
|
|
toast: (message: string, options?: object | string, context?: HTMLElement) => void |
|
|
|
} |
|
|
|
} |
|
|
|