UNPKG

rxjs

Version:

Reactive Extensions for modern JavaScript

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