UNPKG

rxjs

Version:

Reactive Extensions for modern JavaScript

10 lines (8 loc) 243 B
import { Observable } from '../../Observable'; import { distinct } from '../../operator/distinct'; Observable.prototype.distinct = distinct; declare module '../../Observable' { interface Observable<T> { distinct: typeof distinct; } }