Skip to main content
Module

std/csv/parse.ts>ParseResult

The Deno Standard Library
Go to Latest
type alias ParseResult
Re-export
import { type ParseResult } from "https://deno.land/std@0.223.0/csv/parse.ts";

Options for parse and CsvParseStream.

Type Parameters

ParseOptions
T
definition: T extends ParseOptions & { columns: readonly (infer C extends string)[]; } ? RecordWithColumn<C>[] : T extends ParseOptions & { skipFirstRow: true; } ? Record<string, string | undefined>[] : T extends ParseOptions & { columns?: undefined; skipFirstRow?: false | undefined; } ? string[][] : Record<string, string | undefined>[] | string[][]