Skip to content

Home > @idealeap/pipeline > batchDecorator

batchDecorator() function

Signature:

typescript
export declare function batchDecorator<T, R>(fn: ((input: T) => Promise<R> | R) | ((input: T) => Promise<R> | R)[], options?: BatchOptions<T, R>): (input: T | T[]) => Promise<Awaited<R> | Awaited<R>[]>;
export declare function batchDecorator<T, R>(fn: ((input: T) => Promise<R> | R) | ((input: T) => Promise<R> | R)[], options?: BatchOptions<T, R>): (input: T | T[]) => Promise<Awaited<R> | Awaited<R>[]>;

Parameters

ParameterTypeDescription
fn((input: T) => Promise<R> | R) | ((input: T) => Promise<R> | R)[]
optionsBatchOptions<T, R>(Optional)

Returns:

(input: T | T[]) => Promise<Awaited<R> | Awaited<R>[]>

Released under the MIT License.