interface ParseOptions
implements ReadOptions
import { type ParseOptions } from "https://deno.land/std@0.152.0/encoding/csv.ts";
Properties
If you provide skipFirstRow: true
and columns
, the first line will be skipped.
If you provide skipFirstRow: true
but not columns
, the first line will be skipped and used as header definitions.
optional
columns: string[] | ColumnOptions[]If you provide string[]
or ColumnOptions[]
, those names will be used for header definition.