Skip to content
1 min read · 41 words

Type Alias: ChainExecutor

ts
type ChainExecutor = (ops: MediaOp[]) => Promise<PlanResult>;

Defined in: src/batteries/media/builder.ts:21

The function a builder calls to execute its accumulated ops. Bound by the pipeline.

Parameters

ParameterType
opsMediaOp[]

Returns

Promise<PlanResult>