4 lines
393 B
Plaintext
4 lines
393 B
Plaintext
import { MonoTypeOperatorFunction } from '../types';
|
|
export declare function distinctUntilChanged<T>(comparator?: (previous: T, current: T) => boolean): MonoTypeOperatorFunction<T>;
|
|
export declare function distinctUntilChanged<T, K>(comparator: (previous: K, current: K) => boolean, keySelector: (value: T) => K): MonoTypeOperatorFunction<T>;
|
|
//# sourceMappingURL=distinctUntilChanged.d.ts.map |