UNPKG

@reactivex/rxjs

Version:

Reactive Extensions for modern JavaScript

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