From 0f047f851f5c5ccd7876ecabddd46e476e678b84 Mon Sep 17 00:00:00 2001 From: Kim Birkelund Date: Wed, 3 Sep 2014 12:30:12 +0200 Subject: [PATCH] Fixed definition of KnockoutComputedContext.isInitial: should be () => boolean, was boolean. --- 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 48f550dfe9..27487c7a62 100644 --- a/knockout/knockout.d.ts +++ b/knockout/knockout.d.ts @@ -586,7 +586,7 @@ interface KnockoutComponentConfig { interface KnockoutComputedContext { getDependenciesCount(): number; - isInitial: boolean; + isInitial: () => boolean; isSleeping: boolean; }