(id: string, e: KonvaEventObject<Event>)
| 225 | }; |
| 226 | |
| 227 | const handleRectangleDragEnd = (id: string, e: KonvaEventObject<Event>) => { |
| 228 | const node = e.target as Konva.Rect; |
| 229 | drawingRectangle.updateRectangle(id, { x: node.x(), y: node.y() }); |
| 230 | }; |
| 231 | |
| 232 | const handleRectangleTransformEnd = ( |
| 233 | id: string, |
nothing calls this directly
no outgoing calls
no test coverage detected