UNPKG

293 BTypeScriptView Raw
1import { MonoTypeOperatorAsyncFunction } from '../../interfaces';
2export declare function distinctUntilChanged<TSource, TKey>(keySelector?: (value: TSource) => TKey | Promise<TKey>, comparer?: (first: TKey, second: TKey) => boolean | Promise<boolean>): MonoTypeOperatorAsyncFunction<TSource>;