| 12 | import { GridHTMLElement } from './gridstack'; |
| 13 | |
| 14 | interface DragOffset { |
| 15 | x: number; |
| 16 | top: number; |
| 17 | width: number; |
| 18 | height: number; |
| 19 | offsetX: number; |
| 20 | offsetTop: number; |
| 21 | } |
| 22 | |
| 23 | interface GridStackNodeRotate extends GridStackNode { |
| 24 | _origRotate?: GridStackPosition; |
nothing calls this directly
no outgoing calls
no test coverage detected