|
295 | 295 |
|
296 | 296 | //TODO: these methods return jQuery.Promise instead of any. fix it.
|
297 | 297 |
|
298 |
| - function info(message: string, title?: string, isHtml?: boolean): any; |
| 298 | + function info(message: string, title?: string, isHtml?: boolean, options?: any): any; |
299 | 299 |
|
300 |
| - function success(message: string, title?: string, isHtml?: boolean): any; |
| 300 | + function success(message: string, title?: string, isHtml?: boolean, options?: any): any; |
301 | 301 |
|
302 |
| - function warn(message: string, title?: string, isHtml?: boolean): any; |
| 302 | + function warn(message: string, title?: string, isHtml?: boolean, options?: any): any; |
303 | 303 |
|
304 |
| - function error(message: string, title?: string, isHtml?: boolean): any; |
| 304 | + function error(message: string, title?: string, isHtml?: boolean, options?: any): any; |
305 | 305 |
|
306 |
| - function confirm(message: string, callback?: (result: boolean) => void): any; |
| 306 | + function confirm(message: string, callback?: (result: boolean, options?: any) => void): any; |
307 | 307 |
|
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; |
309 | 309 |
|
310 | 310 | }
|
311 | 311 |
|
|
0 commit comments