| 8 | * configuration object of the MagicGrid constructor |
| 9 | */ |
| 10 | export interface MagicGridProps { |
| 11 | container: string | HTMLElement; |
| 12 | static?: boolean; |
| 13 | items?: number; |
| 14 | gutter?: number; |
| 15 | maxColumns?: number; |
| 16 | useMin?: boolean; |
| 17 | useTransform?: boolean; |
| 18 | animate?: boolean; |
| 19 | center?: boolean; |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * Listener class |
nothing calls this directly
no outgoing calls
no test coverage detected