| 11 | |
| 12 | /** options used during creation - similar to GridStackOptions */ |
| 13 | export interface GridStackEngineOptions { |
| 14 | column?: number; |
| 15 | maxRow?: number; |
| 16 | float?: boolean; |
| 17 | nodes?: GridStackNode[]; |
| 18 | onChange?: OnChangeCB; |
| 19 | } |
| 20 | |
| 21 | /** |
| 22 | * Defines the GridStack engine that handles all grid layout calculations and node positioning. |
nothing calls this directly
no outgoing calls
no test coverage detected