| 2 | import { FlowNodeData } from '../types'; |
| 3 | |
| 4 | interface InnerStepSelection { |
| 5 | parentNodeId: string; |
| 6 | branch: string; // 'then' | 'else' | 'loop' |
| 7 | stepIndex: number; |
| 8 | stepData: FlowNodeData; |
| 9 | } |
| 10 | |
| 11 | interface InnerStepContextType { |
| 12 | selectedInnerStep: InnerStepSelection | null; |
nothing calls this directly
no outgoing calls
no test coverage detected