NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/rxjs/internal/operators/distinctUntilKeyChanged.d.ts

4 lines
296 B
TypeScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
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>;