UNPKG

rxjs

Version:

Reactive Extensions for modern JavaScript

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