mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) flesh out getAccessToken API documentation
Summary: This extends the getAccessToken documentation so it can be picked up by typedoc and published, and makes a few other tweaks along the way prompted by a typescript/typedoc version change. Test Plan: made in concert with a grist-help update Reviewers: jarek Reviewed By: jarek Subscribers: jarek Differential Revision: https://phab.getgrist.com/D3548
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
// Letter codes for CellValue types encoded as [code, args...] tuples.
|
||||
/**
|
||||
* Letter codes for CellValue types encoded as [code, args...] tuples.
|
||||
*/
|
||||
export enum GristObjCode {
|
||||
List = 'L',
|
||||
LookUp = 'l',
|
||||
@@ -15,6 +17,9 @@ export enum GristObjCode {
|
||||
Versions = 'V',
|
||||
}
|
||||
|
||||
/**
|
||||
* Possible types of cell content.
|
||||
*/
|
||||
export type CellValue = number|string|boolean|null|[GristObjCode, ...unknown[]];
|
||||
export interface BulkColValues { [colId: string]: CellValue[]; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user