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

CsvRow

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

A representation of a single data row in a CSV file.

interface CsvRow {
entries?: string[];
}

§Properties

§
entries?: string[]
[src]

The data entries in a CSV file row, as a string array rather than a single comma-separated string.