(
e: KonvaEventObject<MouseEvent | TouchEvent>
)
| 160 | : []; |
| 161 | |
| 162 | const handleStagePointerDown = ( |
| 163 | e: KonvaEventObject<MouseEvent | TouchEvent> |
| 164 | ) => { |
| 165 | if (isPointerTool && e.target === stageRef.current) { |
| 166 | setSelectedTransformableShape(null); |
| 167 | setActiveNode(null); |
| 168 | } |
| 169 | drawingTool?.handlePointerDown(e); |
| 170 | }; |
| 171 | |
| 172 | const handleStagePointerMove = ( |
| 173 | e: KonvaEventObject<MouseEvent | TouchEvent> |
nothing calls this directly
no outgoing calls
no test coverage detected