More file renames

This commit is contained in:
Boris Yankov
2013-01-17 17:19:40 +02:00
parent c98eebb137
commit 78b78fe00b
3 changed files with 0 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
/// <reference path="knockout-2.2.d.ts" />
// build: ko.editables 0.9
// http://romanych.github.com/ko.editables/
// bestowed by ko.editable(target)
interface KnockoutEditable {
addEditable(target: any): any;
beginEdit(): void;
commit(): void;
rollback(): void;
hasChanges(): bool;
}
interface KnockoutEditableStatic {
(viewModel: any, autoInit?: bool): void;
beginEdit(scope: string): void;
commit(scope: string): void;
rollback(scope: string): void;
hasChanges(scope: string): bool;
// INTERNAL
//getHasChangesFlag(scope: string): any;
//enable(object: any, scope: string); void;
}
// extend ko global
interface KnockoutStatic {
editable: KnockoutEditableStatic;
}