* Get all panes with their positions for navigation.
| 317 | * Get all panes with their positions for navigation. |
| 318 | */ |
| 319 | interface PanePosition { |
| 320 | sessionId: string; |
| 321 | path: number[]; |
| 322 | // Calculated bounds (normalized 0-1) |
| 323 | x: number; |
| 324 | y: number; |
| 325 | width: number; |
| 326 | height: number; |
| 327 | } |
| 328 | |
| 329 | const collectPanePositions = ( |
| 330 | node: WorkspaceNode, |
nothing calls this directly
no outgoing calls
no test coverage detected