@lifaon/rx-js-light
Version:
Blazing fast Observables
5 lines (4 loc) • 317 B
TypeScript
import { IObserver } from '../../observer/type/observer.type';
import { IObservable } from '../../observable/type/observable.type';
import { ISubscription } from './subscription.type';
export declare function createSubscription<GValue>(subscribe: IObservable<GValue>, emit: IObserver<GValue>): ISubscription<GValue>;