7 lines
181 B
TypeScript
7 lines
181 B
TypeScript
import { windowCount } from '../../operator/windowCount';
|
|
declare module 'rxjs/internal/Observable' {
|
|
interface Observable<T> {
|
|
windowCount: typeof windowCount;
|
|
}
|
|
}
|