Big replacement: bool with boolean

This commit is contained in:
Boris Yankov
2013-08-07 16:59:39 +03:00
parent bded8a8af5
commit dd35f69637
128 changed files with 4254 additions and 4240 deletions
+6 -6
View File
@@ -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;