| 19 | export type PipelineStage = 'pre' | 'normal' | 'post' |
| 20 | |
| 21 | export interface PipelineNodeCursor { |
| 22 | id: string |
| 23 | stage: PipelineStage |
| 24 | } |
| 25 | |
| 26 | export interface PipelineNodeContext { |
| 27 | stage: PipelineStage |
nothing calls this directly
no outgoing calls
no test coverage detected