(start, end)
| 1402 | return coordinator?.getZoomRange() ?? null; |
| 1403 | }, |
| 1404 | setZoomRange(start, end) { |
| 1405 | if (disposed) return; |
| 1406 | coordinator?.setZoomRange(start, end); |
| 1407 | }, |
| 1408 | getPerformanceMetrics() { |
| 1409 | if (disposed) return null; |
| 1410 | return calculatePerformanceMetrics(); |
nothing calls this directly
no test coverage detected