Fixed definition of KnockoutComputedContext.isInitial: should be () => boolean, was boolean.

This commit is contained in:
Kim Birkelund
2014-09-03 12:30:12 +02:00
parent 0d999bb466
commit 0f047f851f

View File

@@ -586,7 +586,7 @@ interface KnockoutComponentConfig {
interface KnockoutComputedContext {
getDependenciesCount(): number;
isInitial: boolean;
isInitial: () => boolean;
isSleeping: boolean;
}