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
| Parameter | Type |
|---|---|
ops | MediaOp[] |
Returns
Promise<PlanResult>