Type Alias: MediaStepMiddlewareFn
ts
type MediaStepMiddlewareFn = (
ctx: StepContext,
next: NextFn,
) => void | Promise<void>;Defined in: src/batteries/media/runtime.ts:80
Consumer step interceptor — the use seam. Same onion shape as the tool batteries.
Parameters
| Parameter | Type |
|---|---|
ctx | StepContext |
next | NextFn |
Returns
void | Promise<void>