| 4 | const { round, ceil, floor, log2 } = Math |
| 5 | |
| 6 | interface PaneContextShape { |
| 7 | xPanes: Interval[] |
| 8 | yPanes: Interval[] |
| 9 | xPaneRange: Interval |
| 10 | yPaneRange: Interval |
| 11 | } |
| 12 | |
| 13 | const PaneContext = React.createContext<PaneContextShape>({ |
| 14 | xPanes: [], |
nothing calls this directly
no outgoing calls
no test coverage detected