UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

11 lines (10 loc) 376 B
import { IterableX } from '../../iterable/iterablex'; /** * @ignore */ export declare function distinctProto<TSource, TKey>(this: IterableX<TSource>, keySelector?: (value: TSource) => TKey, comparer?: (x: TKey, y: TKey) => boolean): IterableX<TSource>; declare module '../../iterable/iterablex' { interface IterableX<T> { distinct: typeof distinctProto; } }