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

View File

@@ -9,15 +9,15 @@ interface KnockoutEditable {
beginEdit(): void;
commit(): void;
rollback(): void;
hasChanges(): bool;
hasChanges(): boolean;
}
interface KnockoutEditableStatic {
(viewModel: any, autoInit?: bool): void;
(viewModel: any, autoInit?: boolean): void;
beginEdit(scope: string): void;
commit(scope: string): void;
rollback(scope: string): void;
hasChanges(scope: string): bool;
hasChanges(scope: string): boolean;
// INTERNAL
//getHasChangesFlag(scope: string): any;