| 2263 | |
| 2264 | // Floating panel data |
| 2265 | interface FloatingPanelData { |
| 2266 | id: string; |
| 2267 | x: number; |
| 2268 | y: number; |
| 2269 | width: number; |
| 2270 | height: number; |
| 2271 | isExiting?: boolean; |
| 2272 | } |
| 2273 | |
| 2274 | // Connection between two panels |
| 2275 | interface PanelConnection { |
nothing calls this directly
no outgoing calls
no test coverage detected