UNPKG

@lifaon/rx-js-light

Version:

Blazing fast Observables

6 lines (5 loc) 287 B
import { IObserver } from '../../../type/observer.type'; /** * Returns an Observer that emits all items emitted by the source Observer that are distinct by comparison from previous values */ export declare function distinctObserver<GValue>(emit: IObserver<GValue>): IObserver<GValue>;