import { AsyncIterableX } from '../../asynciterable/asynciterablex.js'; import { pluck } from '../../asynciterable/operators/pluck.js'; /** * @ignore */ export function pluckProto(this: AsyncIterableX, ...args: string[]): AsyncIterableX { return pluck(...args)(this); } AsyncIterableX.prototype.pluck = pluckProto; declare module '../../asynciterable/asynciterablex' { interface AsyncIterableX { pluck: typeof pluckProto; } }