UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

11 lines (10 loc) 463 B
import { AsyncIterableX } from '../../asynciterable/asynciterablex'; /** * @ignore */ export declare function distinctUntilChangedProto<T, TKey>(this: AsyncIterableX<T>, keySelector?: (value: T) => TKey | Promise<TKey>, comparer?: (x: TKey, y: TKey) => boolean | Promise<boolean>): AsyncIterableX<T>; declare module '../../asynciterable/asynciterablex' { interface AsyncIterableX<T> { distinctUntilChanged: typeof distinctUntilChangedProto; } }