mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 22:30:01 +00:00
Fix --noImplicitAny error
This commit is contained in:
@@ -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
|
||||
|
||||
2
knockout.es5/knockout.es5.d.ts
vendored
2
knockout.es5/knockout.es5.d.ts
vendored
@@ -19,7 +19,7 @@ interface KnockoutDefinePropertyOptions {
|
||||
}
|
||||
|
||||
interface Array<T> {
|
||||
remove(item): T[];
|
||||
remove(item: T): T[];
|
||||
removeAll(items: T[]): T[];
|
||||
removeAll(): T[];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user