UNPKG

@reactivex/rxjs

Version:

Reactive Extensions for modern JavaScript

12 lines (8 loc) 256 B
import { Observable } from 'rxjs'; import { partition } from '../../operator/partition'; (Observable as any).prototype.partition = partition; declare module 'rxjs/internal/Observable' { interface Observable<T> { partition: typeof partition; } }