Fix --noImplicitAny error

This commit is contained in:
MIZUNE Pine 2014-10-28 02:53:19 +09:00
parent aacb0059e0
commit 1036916639
2 changed files with 2 additions and 2 deletions

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

View File

@ -19,7 +19,7 @@ interface KnockoutDefinePropertyOptions {
}
interface Array<T> {
remove(item): T[];
remove(item: T): T[];
removeAll(items: T[]): T[];
removeAll(): T[];