distinctUntilChanged.d.ts 209 字节
import { distinctUntilChanged } from '../../operator/distinctUntilChanged';
declare module '../../Observable' {
    interface Observable<T> {
        distinctUntilChanged: typeof distinctUntilChanged;
    }
}