mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
Fix --noImplicitAny error
This commit is contained in:
parent
aacb0059e0
commit
1036916639
@ -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[];
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user