()
| 310 | |
| 311 | const createCoordinatorZoomStateLike = (): ZoomState => { |
| 312 | const getRange: ZoomState['getRange'] = () => coordinator?.getZoomRange() ?? { start: 0, end: 100 }; |
| 313 | const setRange: ZoomState['setRange'] = (start, end) => coordinator?.setZoomRange(start, end); |
| 314 | const pan: ZoomState['pan'] = (delta) => { |
| 315 | const r = coordinator?.getZoomRange(); |
nothing calls this directly
no test coverage detected