mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-07-04 17:20:09 +00:00
Fixed the KnockoutExtenders interface definition
The TS 0.9.1.1 compiler was complaining that the throttle property was missing a generic type argument.
This commit is contained in:
2
knockout/knockout.d.ts
vendored
2
knockout/knockout.d.ts
vendored
@@ -188,7 +188,7 @@ interface KnockoutVirtualElements {
|
||||
}
|
||||
|
||||
interface KnockoutExtenders {
|
||||
throttle(target: any, timeout: number): KnockoutComputed;
|
||||
throttle(target: any, timeout: number): KnockoutComputed<any>;
|
||||
notify(target: any, notifyWhen: string): any;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user