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