LogsTable interface

Contains the columns and rows for one table in a query response.

Properties

columnDescriptors

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

The list of columns in this table.

columnDescriptors: LogsColumn[]

Property Value

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)[][]