UNPKG

rxjs-es

Version:

Reactive Extensions for modern JavaScript

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