mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Big replacement: bool with boolean
This commit is contained in:
Vendored
+6
-6
@@ -9,9 +9,9 @@ interface HumaneOptions {
|
||||
baseCls?: string;
|
||||
addnCls?: string;
|
||||
timeout?: number;
|
||||
waitForMove?: bool;
|
||||
clickToClose?: bool;
|
||||
forceNew?: bool;
|
||||
waitForMove?: boolean;
|
||||
clickToClose?: boolean;
|
||||
forceNew?: boolean;
|
||||
}
|
||||
|
||||
interface Humane {
|
||||
@@ -19,9 +19,9 @@ interface Humane {
|
||||
baseCls: string;
|
||||
addnCls: string;
|
||||
timeout: number;
|
||||
waitForMove: bool;
|
||||
clickToClose: bool;
|
||||
forceNew: bool;
|
||||
waitForMove: boolean;
|
||||
clickToClose: boolean;
|
||||
forceNew: boolean;
|
||||
|
||||
create(options?: HumaneOptions): Humane;
|
||||
info: Function;
|
||||
|
||||
Reference in New Issue
Block a user