UNPKG

@lifaon/rx-js-light

Version:

Blazing fast Observables

4 lines (3 loc) 234 B
import { IObserver } from '../../../type/observer.type'; import { IMapFunction } from './map-function.type'; export declare function mapObserver<GIn, GOut>(emit: IObserver<GOut>, mapFunction: IMapFunction<GIn, GOut>): IObserver<GIn>;