export type TableData = Row[]; export type Row = { [column: ColumnName]: Value; }; export type ColumnName = string; export type Value = string | number | null;