UNPKG

@lifaon/rx-js-light

Version:

Blazing fast Observables

4 lines (3 loc) 354 B
import { IObservable } from '../../../../../type/observable.type'; import { IThrottleTimeObservablePipeOptions } from './throttle-time-observable-pipe-options.type'; export declare function throttleTimeObservable<GValue>(subscribe: IObservable<GValue>, duration: number, { leading, trailing, }?: IThrottleTimeObservablePipeOptions): IObservable<GValue>;