UNPKG

rxjs

Version:

Reactive Extensions for modern JavaScript

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