(e: PointerEvent)
| 252 | const onLeftDown = (e: PointerEvent): void => startDrag(e, 'left-handle'); |
| 253 | const onRightDown = (e: PointerEvent): void => startDrag(e, 'right-handle'); |
| 254 | const onPanDown = (e: PointerEvent): void => startDrag(e, 'pan-window'); |
| 255 | |
| 256 | leftHandle.addEventListener('pointerdown', onLeftDown, { passive: false }); |
| 257 | rightHandle.addEventListener('pointerdown', onRightDown, { passive: false }); |
nothing calls this directly
no test coverage detected