UNPKG

@reactivex/rxjs

Version:

Reactive Extensions for modern JavaScript

12 lines (8 loc) 226 B
import { Observable } from 'rxjs'; import { find } from '../../operator/find'; (Observable as any).prototype.find = find; declare module 'rxjs/internal/Observable' { interface Observable<T> { find: typeof find; } }