()
| 696 | |
| 697 | const createCoordinatorZoomStateLike = (): ZoomState => { |
| 698 | const getRange: ZoomState['getRange'] = () => coordinator?.getZoomRange() ?? { start: 0, end: 100 }; |
| 699 | const setRange: ZoomState['setRange'] = (start, end) => { |
| 700 | coordinator?.setZoomRange(start, end); |
| 701 | }; |
nothing calls this directly
no test coverage detected