import { AsyncIterableX } from '../../asynciterable/asynciterablex.js'; import { StartWithAsyncIterable } from '../../asynciterable/operators/startwith.js'; /** * @ignore */ export function startWithProto(this: AsyncIterableX, ...args: T[]) { return new StartWithAsyncIterable(this, args); } AsyncIterableX.prototype.startWith = startWithProto; declare module '../../asynciterable/asynciterablex' { interface AsyncIterableX { startWith: typeof startWithProto; } }