UNPKG

@lifaon/rx-js-light

Version:

Blazing fast Observables

7 lines (6 loc) 331 B
import { IMapFunction } from '../../../../../../observer/pipes/built-in/map/map-function.type'; import { IObservable } from '../../../../../type/observable.type'; /** * @see mapObserverPipe */ export declare function mapObservable<GIn, GOut>(subscribe: IObservable<GIn>, mapFunction: IMapFunction<GIn, GOut>): IObservable<GOut>;