UNPKG

rxjs

Version:

Reactive Extensions for modern JavaScript

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