UNPKG

rxjs

Version:

Reactive Extensions for modern JavaScript

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