(e: MouseEvent)
| 201 | handleVolumeAt(e.clientX); |
| 202 | }); |
| 203 | const onVolumeMouseMove = (e: MouseEvent) => { |
| 204 | if (volumeScrubbing) handleVolumeAt(e.clientX); |
| 205 | }; |
| 206 | const onVolumeMouseUp = () => { |
| 207 | volumeScrubbing = false; |
| 208 | }; |
nothing calls this directly
no test coverage detected