UNPKG

rxjs-es

Version:

Reactive Extensions for modern JavaScript

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