Merge pull request #2770 from kimbirkelund/master

Fixed definition of KnockoutComputedContext.isInitial: should be function
This commit is contained in:
Masahiro Wakame
2014-09-05 11:37:15 +09:00
+1 -1
View File
@@ -586,7 +586,7 @@ interface KnockoutComponentConfig {
interface KnockoutComputedContext {
getDependenciesCount(): number;
isInitial: boolean;
isInitial: () => boolean;
isSleeping: boolean;
}