UNPKG

407 BTypeScriptView Raw
1import { IterableX } from '../../iterable/iterablex';
2/**
3 * @ignore
4 */
5export declare function distinctUntilChangedProto<TSource, TKey>(this: IterableX<TSource>, keySelector?: (value: TSource) => TKey, cmp?: (x: TKey, y: TKey) => boolean): IterableX<TSource>;
6declare module '../../iterable/iterablex' {
7 interface IterableX<T> {
8 distinctUntilChanged: typeof distinctUntilChangedProto;
9 }
10}