UNPKG

rxjs

Version:

Reactive Extensions for modern JavaScript

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