Files

7 lines
229 B
TypeScript

import { distinctUntilKeyChanged } from '../../operator/distinctUntilKeyChanged';
declare module 'rxjs/internal/Observable' {
interface Observable<T> {
distinctUntilKeyChanged: typeof distinctUntilKeyChanged;
}
}