import { IterableX } from '../../iterable/iterablex.js'; import { ignoreElements } from '../../iterable/operators/ignoreelements.js'; /** * @ignore */ export function ignoreElementsProto(this: IterableX): IterableX { return ignoreElements()(this); } IterableX.prototype.ignoreElements = ignoreElementsProto; declare module '../../iterable/iterablex' { interface IterableX { ignoreElements: typeof ignoreElementsProto; } }