Skip to content

PipelineStep

Defined in: pipeline/pipeline.ts:26

A single step in a pipeline.

  • Static: a pre-compiled Plan executed as-is
  • Dynamic: a factory that receives the previous step’s output and builds a Plan

readonly name: string

Defined in: pipeline/pipeline.ts:27


readonly plan: Plan<unknown> | (input) => Plan<unknown>

Defined in: pipeline/pipeline.ts:28