UNPKG

rxjs-es

Version:

Reactive Extensions for modern JavaScript

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