mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-10 11:40:16 +08:00
Conformed tests to readme.md
This commit is contained in:
Vendored
+3
-2
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user