Knockout: Remove invalid overload

This commit is contained in:
John Reilly
2014-10-16 11:27:05 +01:00
parent 5fe6713e8b
commit 1b04524e2e

View File

@@ -65,7 +65,6 @@ interface KnockoutComputedStatic {
<T>(): KnockoutComputed<T>;
<T>(func: () => T, context?: any, options?: any): KnockoutComputed<T>;
<T>(def: KnockoutComputedDefine<T>, context?: any): KnockoutComputed<T>;
(options?: any, context?: any): KnockoutComputed<any>;
}
interface KnockoutComputed<T> extends KnockoutObservable<T>, KnockoutComputedFunctions<T> {