Removed useless reference to RxJS typing

Since the typing is now part of RxJS, referencing it (which is causing a
nuget package dependency) will cause a problem by having twice the save
references in the samme app.
This commit is contained in:
Carl de Billy
2014-07-20 16:30:34 -04:00
parent 0692edd238
commit a2cb953ad1
+2 -1
View File
@@ -4,7 +4,6 @@
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="../knockout/knockout.d.ts"/>
/// <reference path="../rx.js/rx.d.ts"/>
interface KnockoutSubscribableFunctions<T> {
toObservable(event?: string): Rx.Observable<T>;
@@ -21,6 +20,8 @@ interface KnockoutComputedFunctions<T> {
}
declare module Rx {
interface ISubject<T> { }
interface Observable<T> {
toKoSubscribable(): KnockoutSubscribable<T>;
toKoObservable(initialValue?: T): KnockoutObservable<T>;