Skip to content

Commit 8cf7928

Browse files
author
Musa Demir
committed
all upgraded from Abp.Web.Resources/Abp/Framework
1 parent a250e2b commit 8cf7928

File tree

11 files changed

+759
-714
lines changed

11 files changed

+759
-714
lines changed

Abp/Framework/scripts/abp.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -295,17 +295,17 @@
295295

296296
//TODO: these methods return jQuery.Promise instead of any. fix it.
297297

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

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

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

304-
function error(message: string, title?: string, isHtml?: boolean): any;
304+
function error(message: string, title?: string, isHtml?: boolean, options?: any): any;
305305

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

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

310310
}
311311

0 commit comments

Comments
 (0)