(
e: KonvaEventObject<MouseEvent | TouchEvent>
)
| 170 | }; |
| 171 | |
| 172 | const handleStagePointerMove = ( |
| 173 | e: KonvaEventObject<MouseEvent | TouchEvent> |
| 174 | ) => { |
| 175 | drawingTool?.handlePointerMove(e); |
| 176 | }; |
| 177 | |
| 178 | const handleStagePointerUp = () => { |
| 179 | drawingTool?.handlePointerUp(); |
nothing calls this directly
no outgoing calls
no test coverage detected