mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-27 00:15:09 +08:00
Big replacement: bool with boolean
This commit is contained in:
6
knockout.editables/ko.editables.d.ts
vendored
6
knockout.editables/ko.editables.d.ts
vendored
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user