distinctUntilChanged.d.ts 209 B

123456
  1. import { distinctUntilChanged } from '../../operator/distinctUntilChanged';
  2. declare module '../../Observable' {
  3. interface Observable<T> {
  4. distinctUntilChanged: typeof distinctUntilChanged;
  5. }
  6. }