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

Column

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

Contains metadata for a column in a table.

interface Column {
Comment?: string | null;
Name: string;
Type?: string | null;
}

§Properties

§
Comment?: string | null
[src]

Optional information about the column.

§
Name: string
[src]

The name of the column.

§
Type?: string | null
[src]

The data type of the column.