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