@lifaon/rx-js-light
Version:
Blazing fast Observables
7 lines (6 loc) • 358 B
TypeScript
import { IScanFunction } from '../../../../../../observer/pipes/built-in/scan/scan-function.type';
import { IObservable } from '../../../../../type/observable.type';
/**
* @see scanObserverPipe
*/
export declare function scanObservable<GIn, GOut>(subscribe: IObservable<GIn>, scanFunction: IScanFunction<GIn, GOut>, initialValue: GOut): IObservable<GOut>;