github-pages-deploy-action/node_modules/rxjs/internal/operators/distinctUntilChanged.d.ts

4 lines
307 B
TypeScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
import { MonoTypeOperatorFunction } from '../types';
export declare function distinctUntilChanged<T>(compare?: (x: T, y: T) => boolean): MonoTypeOperatorFunction<T>;
export declare function distinctUntilChanged<T, K>(compare: (x: K, y: K) => boolean, keySelector: (x: T) => K): MonoTypeOperatorFunction<T>;