| 2 | import { FlowNode, FlowEdge } from '../types'; |
| 3 | |
| 4 | interface HistoryState { |
| 5 | nodes: FlowNode[]; |
| 6 | edges: FlowEdge[]; |
| 7 | } |
| 8 | |
| 9 | interface UseHistoryOptions { |
| 10 | maxHistorySize?: number; |
nothing calls this directly
no outgoing calls
no test coverage detected