Conformed tests to readme.md

This commit is contained in:
Vincent Bortone
2013-01-18 16:05:44 -05:00
parent 5aa600bcad
commit f248f8b477
2 changed files with 56 additions and 59 deletions
+3 -2
View File
@@ -33,8 +33,9 @@ interface BootboxStatic {
confirm(message: string, cancelButtonText?: string, confirmButtonText?: string, callback?: (result: bool) => void): void;
prompt(message: string, callback: (result: string) => void, defaultValue?: string): void;
prompt(message: string, cancelButtonText?: string, confirmButtonText?: string, callback?: (result: string) => void, defaultValue?: string): void;
dialog(message: string, handlers?: BootboxHandler[], options?: any): void;
dialog(message: string, handler?: BootboxHandler): void;
dialog(message: string, handlers: BootboxHandler[], options?: any): void;
dialog(message: string, handler: BootboxHandler): void;
dialog(message: string): void;
hideAll(): void;
animate(shouldAnimate: bool): void;
backdrop(backdropValue: string): void;