| 40 | }; |
| 41 | |
| 42 | interface BaseNodeProps { |
| 43 | data: FlowNodeData; |
| 44 | selected?: boolean; |
| 45 | showSourceHandle?: boolean; |
| 46 | showTargetHandle?: boolean; |
| 47 | subtitle?: string | React.ReactNode; |
| 48 | dropHint?: string; |
| 49 | } |
| 50 | |
| 51 | export default function BaseNode({ |
| 52 | data, |
nothing calls this directly
no outgoing calls
no test coverage detected