UNPKG

@reactivex/rxjs

Version:

Reactive Extensions for modern JavaScript

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