Browse Source

Pull request #2364: 无JIRA任务 更新描述

Merge in VISUAL/fineui from ~TELLER/fineui:master to master

* commit '94094274b17de5ce8104e44384d276c1286469d1':
  无JIRA任务 更新描述
es6
Teller 3 years ago
parent
commit
9519b8d252
  1. 8
      typescript/base/foundation/message.ts

8
typescript/base/foundation/message.ts

@ -1,6 +1,6 @@
export type _msg = {
alert: (title: string, message?: string, callback?: (result?: boolean)=>void) => void
confirm: (title: string, message?: string, 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
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, context?: HTMLElement) => void
}

Loading…
Cancel
Save