Update Knockout.d.ts

add `objectForEach` and  `setPrototypeOf` to `KnockoutUtils` interface
This commit is contained in:
Moes
2015-10-07 14:26:14 +10:00
parent c67995d1ec
commit fd7aa0a879
+4
View File
@@ -338,6 +338,10 @@ interface KnockoutUtils {
isIe6: boolean;
isIe7: boolean;
objectForEach(obj: any, action: Function): void;
setPrototypeOf(obj: any, proto: any): void;
}
interface KnockoutArrayChange<T> {