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:
Richard Hepburn
2013-08-21 15:49:58 -04:00
committed by gstamac
parent 894071ac30
commit 7ccafc1bc8

View File

@@ -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;
}