| 15 | } |
| 16 | |
| 17 | export interface CanvasItem { |
| 18 | _dragId: string | number |
| 19 | x: number |
| 20 | y: number |
| 21 | sizeX: number |
| 22 | sizeY: number |
| 23 | |
| 24 | [key: string]: any |
| 25 | } |
| 26 | |
| 27 | export type CanvasCoord = { |
| 28 | x1: number |
nothing calls this directly
no outgoing calls
no test coverage detected