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://googleapis.deno.dev/v1/sqladmin:v1.ts";

Contains the name and datatype of a column.

interface Column {
name?: string;
type?: string;
}

§Properties

§
name?: string
[src]

Name of the column.

§
type?: string
[src]

Datatype of the column.