gristlabs_grist-core/app/plugin/GristData.ts

7 lines
151 B
TypeScript
Raw Normal View History

export type CellValue = number|string|boolean|null|[string, ...unknown[]];
export interface RowRecord {
id: number;
[colId: string]: CellValue;
}