Update knockout.d.ts

Delete extra comma...
This commit is contained in:
Sergio Morchón Poveda
2015-02-25 14:09:05 +01:00
parent 88a708f71a
commit 65e48513de
+1 -1
View File
@@ -133,7 +133,7 @@ interface KnockoutAllBindingsAccessor {
}
interface KnockoutBindingHandler {
init?: (element: any, valueAccessor: () => any, allBindingsAccessor: KnockoutAllBindingsAccessor, viewModel: any, bindingContext: KnockoutBindingContext): void | { controlsDescendantBindings: boolean; };;
init?: (element: any, valueAccessor: () => any, allBindingsAccessor: KnockoutAllBindingsAccessor, viewModel: any, bindingContext: KnockoutBindingContext): void | { controlsDescendantBindings: boolean; };
update?: (element: any, valueAccessor: () => any, allBindingsAccessor: KnockoutAllBindingsAccessor, viewModel: any, bindingContext: KnockoutBindingContext): void;
options?: any;
preprocess?: (value: string, name: string, addBindingCallback?: (name: string, value: string) => void) => string;