© 2026 Hedgehog Software, LLC
interface ColumnCommon { id: string; } type WidthedColumn = ColumnCommon & { width?: Length; }; type WeightedColumn = ColumnCommon & { weight?: number; }; type Columns = Array<WidthedColumn> | Array<WeightedColumn>
weight
width