added forgeted function signature in uikit

This commit is contained in:
Giovanni Silva 2015-10-18 21:59:14 -02:00
parent dc2c33d3fa
commit d7d6451ca3

7
uikit/uikit.d.ts vendored
View File

@ -71,6 +71,13 @@ declare module UIkit {
* @param {function} fn A function to execute on confirmation
*/
confirm(message:string, fn:() => any): void
/**
* Create a prompt dialog, where the user enter information
* @param {string} message The message to display. Can be Html
* @param {function} fn A function to execute on confirmation. The function
* receive the new value as a parameter
*/
prompt(message:string, fn:(newValue:string) => any): void
/**
* Create a prompt dialog, where the user enter information
* @param {string} message The message to display. Can be Html