biofriction-wp-theme/node_modules/rxjs/operators/distinctUntilKeyChanged.d.ts

4 lines
283 B
TypeScript
Raw Permalink Normal View History

2021-10-26 14:18:09 +02:00
import { MonoTypeOperatorFunction } from '../interfaces';
export declare function distinctUntilKeyChanged<T>(key: string): MonoTypeOperatorFunction<T>;
export declare function distinctUntilKeyChanged<T, K>(key: string, compare: (x: K, y: K) => boolean): MonoTypeOperatorFunction<T>;