Update knockout.d.ts

Added after? option  to KnockoutBindingHandler
This commit is contained in:
ibrahimuludag 2015-10-09 14:58:12 +03:00
parent 3fc1377ce2
commit 16d09d28c0

View File

@ -142,6 +142,7 @@ interface KnockoutAllBindingsAccessor {
}
interface KnockoutBindingHandler {
after?: Array<string>;
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;