/** * RxJs + EventBus * * * @langversion TypeScript 2.0 * @tiptext * */ import { Observable } from 'rxjs/Observable'; import { Subscription } from 'rxjs/Subscription'; export declare function toRxEmitter(this: Observable, a: any, b?: any): Subscription; declare module 'rxjs/Observable' { interface Observable { toRxEmitter: typeof toRxEmitter; } }