| 16 | } |
| 17 | |
| 18 | export interface RectangleShape { |
| 19 | id: string; |
| 20 | x: number; |
| 21 | y: number; |
| 22 | width: number; |
| 23 | height: number; |
| 24 | cornerRadius: number; |
| 25 | } |
| 26 | |
| 27 | export interface EllipseShape { |
| 28 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected