Skip to content

Commit 6d75fc9

Browse files
committed
updated to from aspnetboilerplate dev
1 parent 6c61e73 commit 6d75fc9

File tree

10 files changed

+897
-647
lines changed

10 files changed

+897
-647
lines changed

Abp/Framework/scripts/abp.d.ts

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

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

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

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

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

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

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

310308
}
311309

0 commit comments

Comments
 (0)