UNPKG

rxjs

Version:

Reactive Extensions for modern JavaScript

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