| 15 | }; |
| 16 | |
| 17 | export interface EdgeAnchorProps extends SVGAttributes<SVGGElement> { |
| 18 | position: Position; |
| 19 | centerX: number; |
| 20 | centerY: number; |
| 21 | radius?: number; |
| 22 | onMouseDown: (event: ReactMouseEvent<SVGGElement, MouseEvent>) => void; |
| 23 | onMouseEnter: (event: ReactMouseEvent<SVGGElement, MouseEvent>) => void; |
| 24 | onMouseOut: (event: ReactMouseEvent<SVGGElement, MouseEvent>) => void; |
| 25 | type: string; |
| 26 | } |
| 27 | |
| 28 | const EdgeUpdaterClassName = 'react-flow__edgeupdater'; |
| 29 |
nothing calls this directly
no outgoing calls
no test coverage detected