resolved conflicts to pullrequest #387

This commit is contained in:
Diullei Gomes
2013-03-31 12:13:16 -03:00
parent 3a50298a0f
commit b8f2a0df2c
2 changed files with 2 additions and 8 deletions
+1 -6
View File
@@ -67,12 +67,7 @@ interface KnockoutComputedStatic {
(options?: any): KnockoutComputed;
}
interface KnockoutComputed extends KnockoutComputedFunctions {
(): any;
(value: any): void;
subscribe(callback: (newValue: any) => void, target?:any, topic?: string): KnockoutSubscription;
notifySubscribers(valueToWrite, topic?: string);
interface KnockoutComputed extends KnockoutObservableAny, KnockoutComputedFunctions {
}
interface KnockoutObservableArrayStatic {