Package version:

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

interface Table {
    columns: {};
    name: string;
    rows: {};
}

Properties

Properties

columns: {}

The list of columns in this table.

name: string

The name of the table.

rows: {}

The resulting rows from this query.