(core) Add /columns endpoint to DocApi

Summary: Add /columns endpoint to DocApi

Test Plan: Added test

Reviewers: paulfitz

Reviewed By: paulfitz

Differential Revision: https://phab.getgrist.com/D2981
This commit is contained in:
Alex Hall
2021-08-17 22:38:55 +02:00
parent 54beaede84
commit e6e792655b
2 changed files with 41 additions and 1 deletions

View File

@@ -123,7 +123,7 @@ export interface TableRecordValues {
}
export interface TableRecordValue {
id: number;
id: number | string;
fields: {
[colId: string]: CellValue
};