Current section

Files

Jump to
spellweaver priv bun node_modules @cspell cspell-pipe dist operators append.d.ts
Raw

priv/bun/node_modules/@cspell/cspell-pipe/dist/operators/append.d.ts

import type { PipeFn } from '../internalTypes.js';
/**
* Append values onto the end of an iterable.
* @param iterablesToAppend - the iterables in the order to be appended.
* @returns
*/
export declare function opAppendAsync<T>(...iterablesToAppend: (AsyncIterable<T> | Iterable<T>)[]): (iter: AsyncIterable<T> | Iterable<T>) => AsyncIterable<T>;
/**
* Append values onto the end of an iterable.
* @param iterablesToAppend - the iterables in the order to be appended.
* @returns
*/
export declare function opAppendSync<T>(...iterablesToAppend: Iterable<T>[]): (iter: Iterable<T>) => Iterable<T>;
export declare function opAppend<T>(...iterablesToAppend: Iterable<T>[]): PipeFn<T, T>;
//# sourceMappingURL=append.d.ts.map