Skip to content

Commit 3e15abb

Browse files
committed
resolved #16: Updated abp.message type definitions
1 parent 5ecd13b commit 3e15abb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Abp/Framework/scripts/abp.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -293,17 +293,17 @@
293293

294294
//TODO: these methods return jQuery.Promise instead of any. fix it.
295295

296-
function info(message: string, title?: string): any;
296+
function info(message: string, title?: string, isHtml?: boolean): any;
297297

298-
function success(message: string, title?: string): any;
298+
function success(message: string, title?: string, isHtml?: boolean): any;
299299

300-
function warn(message: string, title?: string): any;
300+
function warn(message: string, title?: string, isHtml?: boolean): any;
301301

302-
function error(message: string, title?: string): any;
302+
function error(message: string, title?: string, isHtml?: boolean): any;
303303

304304
function confirm(message: string, callback?: (result: boolean) => void): any;
305305

306-
function confirm(message: string, title?: string, callback?: (result: boolean) => void): any;
306+
function confirm(message: string, title?: string, callback?: (result: boolean) => void, isHtml?: boolean): any;
307307

308308
}
309309

0 commit comments

Comments
 (0)