distinctUntilKeyChanged.d.ts 296 B

1234
  1. import { MonoTypeOperatorFunction } from '../types';
  2. export declare function distinctUntilKeyChanged<T>(key: keyof T): MonoTypeOperatorFunction<T>;
  3. export declare function distinctUntilKeyChanged<T, K extends keyof T>(key: K, compare: (x: T[K], y: T[K]) => boolean): MonoTypeOperatorFunction<T>;