7 lines
217 B
TypeScript
7 lines
217 B
TypeScript
import { distinctUntilChanged } from '../../operator/distinctUntilChanged';
|
|
declare module 'rxjs/internal/Observable' {
|
|
interface Observable<T> {
|
|
distinctUntilChanged: typeof distinctUntilChanged;
|
|
}
|
|
}
|