import { AsyncIterableX } from '../../asynciterable/asynciterablex.js'; import { ConcatAllAsyncIterable } from '../../asynciterable/operators/concatall.js'; /** * @ignore */ export function concatAllProto(this: AsyncIterableX>): AsyncIterableX { return new ConcatAllAsyncIterable(this); } AsyncIterableX.prototype.concatAll = concatAllProto; declare module '../../asynciterable/asynciterablex' { interface AsyncIterableX { concatAll: typeof concatAllProto; } }