UNPKG

@reactivex/rxjs

Version:

Reactive Extensions for modern JavaScript

12 lines (8 loc) 286 B
import { Observable } from 'rxjs'; import { withLatestFrom } from '../../operator/withLatestFrom'; (Observable as any).prototype.withLatestFrom = withLatestFrom; declare module 'rxjs/internal/Observable' { interface Observable<T> { withLatestFrom: typeof withLatestFrom; } }