Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ColumnInfo

import type { ColumnInfo } from "https://aws-api.deno.dev/v0.3/services/timestreamquery.ts?docs=full";

Contains the metadata for query results such as the column names, data types, and other attributes.

interface ColumnInfo {
Name?: string | null;
Type: Type;
}

§Properties

§
Name?: string | null
[src]

The name of the result set column. The name of the result set is available for columns of all data types except for arrays.

§
Type: Type
[src]

The data type of the result set column. The data type can be a scalar or complex. Scalar data types are integers, strings, doubles, Booleans, and others. Complex data types are types such as arrays, rows, and others.