UNPKG

@reactivex/rxjs

Version:

Reactive Extensions for modern JavaScript

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