@acutmore/rxjs
Version:
Reactive Extensions for modern JavaScript
12 lines (8 loc) • 317 B
text/typescript
import { Observable } from '../../internal/Observable';
import { withLatestFrom } from '../../internal/patching/operator/withLatestFrom';
Observable.prototype.withLatestFrom = withLatestFrom;
declare module '../../internal/Observable' {
interface Observable<T> {
withLatestFrom: typeof withLatestFrom;
}
}