frontend/.pnpm-store/v3/files/d8/e7d9209e9db3945804c91b227a08b0f4097c49f0cb08ab07afa75d7c3729709c8c21f56252ccf418a36fcccada1c1d88800bc700828552e034e61e78a3a54e

4 lines
296 B
Plaintext

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