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-25 11:13:54 +02:00
committed by gstamac
parent 894071ac30
commit 7ccafc1bc8
+1 -1
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;
}