LogsTable interface
Contains the columns and rows for one table in a query response.
Properties
| column |
The list of columns in this table. |
| name | The name of the table. |
| rows | The two dimensional array of results from this query indexed by row and column. |
Property Details
columnDescriptors
name
The name of the table.
name: string
Property Value
string
rows
The two dimensional array of results from this query indexed by row and column.
rows: (string | number | boolean | Record<string, unknown> | Date)[][]
Property Value
(string | number | boolean | Record<string, unknown> | Date)[][]