Merge pull request #3043 from pine613/feature/knockout.es5/fix

Fix --noImplicitAny error
This commit is contained in:
Masahiro Wakame
2014-10-29 12:35:12 +09:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ var empty = {},
observable = ko.observable(123),
computed = ko.computed(function () { return observable() + 1; }),
model = { prop: 100 },
notifiedValues = [];
notifiedValues: any[] = [];
// Basic properties
+1 -1
View File
@@ -19,7 +19,7 @@ interface KnockoutDefinePropertyOptions {
}
interface Array<T> {
remove(item): T[];
remove(item: T): T[];
removeAll(items: T[]): T[];
removeAll(): T[];