| 18 | } from '@type'; |
| 19 | |
| 20 | export interface Group extends ColumnProperties { |
| 21 | name: string; |
| 22 | children: (ColumnGrouping | ColumnRegular)[]; |
| 23 | // physical indexes to start from |
| 24 | indexes: number[]; |
| 25 | } |
| 26 | export type Groups = Record<number, Group[]>; |
| 27 | export type GDataType = DataType | ColumnRegular; |
| 28 | export type GDimension = DimensionRows | DimensionCols; |
nothing calls this directly
no outgoing calls
no test coverage detected