(callback)
| 5002 | }; |
| 5003 | |
| 5004 | const onInteractionXChange: RenderCoordinator['onInteractionXChange'] = (callback) => { |
| 5005 | assertNotDisposed(); |
| 5006 | interactionXListeners.add(callback); |
| 5007 | return () => { |
| 5008 | interactionXListeners.delete(callback); |
| 5009 | }; |
| 5010 | }; |
| 5011 | |
| 5012 | const getZoomRange: RenderCoordinator['getZoomRange'] = () => { |
| 5013 | return zoomState?.getRange() ?? null; |
nothing calls this directly
no test coverage detected