UNPKG

@reactivex/rxjs

Version:

Reactive Extensions for modern JavaScript

11 lines (8 loc) 299 B
import {Observable} from '../../Observable'; import {combineLatest, CombineLatestSignature} from '../../operator/combineLatest'; Observable.prototype.combineLatest = combineLatest; declare module '../../Observable' { interface Observable<T> { combineLatest: CombineLatestSignature<T>; } }