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
Parameter | Type | Description |
---|---|---|
fn | ((input: T) => Promise<R> | R) | ((input: T) => Promise<R> | R)[] | |
options | BatchOptions<T, R> | (Optional) |
Returns: