Update durandal.d.ts

missing the result* parameter
This commit is contained in:
vincenthome
2013-10-14 14:50:15 -04:00
parent 9f71db2f1c
commit de3c44456b
+1 -1
View File
@@ -960,7 +960,7 @@ declare module 'plugins/dialog' {
* @param {object} obj The object whose dialog should be closed.
* @param {object} result* The results to return back to the dialog caller after closing.
*/
export function close(obj: any): void;
export function close(obj: any, ...result: any[]): void;
/**
* Shows a dialog.