From 7ccafc1bc8a5b1c7f3deea7f21d91fb3dcc7d5d5 Mon Sep 17 00:00:00 2001 From: Richard Hepburn Date: Wed, 21 Aug 2013 15:49:58 -0400 Subject: [PATCH] Fixed the KnockoutExtenders interface definition The TS 0.9.1.1 compiler was complaining that the throttle property was missing a generic type argument. --- knockout/knockout.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/knockout/knockout.d.ts b/knockout/knockout.d.ts index 5b1bdd63f9..1124780e6c 100644 --- a/knockout/knockout.d.ts +++ b/knockout/knockout.d.ts @@ -188,7 +188,7 @@ interface KnockoutVirtualElements { } interface KnockoutExtenders { - throttle(target: any, timeout: number): KnockoutComputed; + throttle(target: any, timeout: number): KnockoutComputed; notify(target: any, notifyWhen: string): any; }