import { Observable } from 'rxjs'; import { groupBy } from '../../operator/groupBy'; (Observable as any).prototype.groupBy = groupBy; declare module 'rxjs/internal/Observable' { interface Observable { groupBy: typeof groupBy; } }