import { PipelineStep } from './PipelineStep.js'; export interface PipelineNode { step: PipelineStep; branches?: Map>; nextNode?: PipelineNode; }