1234567891011121314151617 |
- export interface PaletteShape {
- index: number
- idSeed: number
- type: string
- id: string
- title: string
- class: string
- width: number
- height: number
- style: Record<string, any>
- icon?: string
- iconColor?: string
- }
- export interface CellGeometry {
- width: number
- height: number
- }
|