UNPKG

@reactivex/rxjs

Version:

Reactive Extensions for modern JavaScript

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