getTableInfo
Get information about a table.
Parameter
The name of the table.
Returns
An object with the following keys:
| Key | Type | Description |
|---|---|---|
| name | string | Table name. |
| uid | string | Unique identifier of the table. |
| rowCount | number | Number of rows, not including the headers. |
| columnCount | number | Number of columns. |
| memoryUsage | number | Memory usage in bytes. |
| modified | number | Last-modified timestamp (Unix time). |
| headers | array of strings | The table headers. |
| keyColumn | number | Index of the key column. Present only if set. |
| columnFormats | array | Per-column format objects. |