import { IterableX } from '../../iterable/iterablex.js'; import { isEmpty } from '../../iterable/isempty.js'; /** * @ignore */ export function isEmptyProto(this: IterableX): boolean { return isEmpty(this); } IterableX.prototype.isEmpty = isEmptyProto; declare module '../../iterable/iterablex' { interface IterableX { isEmpty: typeof isEmptyProto; } }