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

Csv

import type { Csv } from "https://googleapis.deno.dev/v1/alertcenter:v1beta1.ts";

A representation of a CSV file attachment, as a list of column headers and a list of data rows.

interface Csv {
dataRows?: CsvRow[];
headers?: string[];
}

§Properties

§
dataRows?: CsvRow[]
[src]

The list of data rows in a CSV file, as string arrays rather than as a single comma-separated string.

§
headers?: string[]
[src]

The list of headers for data columns in a CSV file.