(e: MouseEvent)
| 296 | handleScrubAt(e.clientX); |
| 297 | }); |
| 298 | const onMouseMove = (e: MouseEvent) => { |
| 299 | if (scrubbing) handleScrubAt(e.clientX); |
| 300 | }; |
| 301 | const onMouseUp = () => { |
| 302 | scrubbing = false; |
| 303 | }; |
nothing calls this directly
no test coverage detected