(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:
Paul Fitzpatrick
2022-07-27 15:29:20 -04:00
parent 80f31bffc2
commit aeb7a4b849
4 changed files with 70 additions and 7 deletions

View File

@@ -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[]; }