UNPKG

@lifaon/rx-js-light

Version:

Blazing fast Observables

4 lines (3 loc) 259 B
import { IObserver } from '../../../type/observer.type'; import { IScanFunction } from './scan-function.type'; export declare function scanObserver<GIn, GOut>(emit: IObserver<GOut>, scanFunction: IScanFunction<GIn, GOut>, initialValue: GOut): IObserver<GIn>;