// Type definitions for angularjs extensions to rxjs // Project: http://reactivex.io/ // Definitions by: Mick Delaney // Definitions: https://github.com/borisyankov/DefinitelyTyped /// /// /// declare module Rx { interface IObservable { safeApply($scope: ng.IScope, callback: (data: any) => void): Rx.Observable; } } declare module rx.angular { export interface IRxScope extends ng.IScope { $toObservable(property: string): Rx.Observable; } }