Files
profile/themes/keepit/node_modules/rxjs/internal/operators/distinctUntilKeyChanged.d.ts
Spencer Pincott 97737ca1ae Initial commit
2024-07-15 22:20:13 -04:00

4 lines
296 B
TypeScript

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>;