interface ColumnOptionsimport { type ColumnOptions } from "https://dotland.deno.dev/std@0.116.0/encoding/csv.ts"; Parse the CSV string/buffer with the options provided. ColumnOptions provides the column definition and the parse function for each entry of the column. Propertiesname: stringName of the column to be used as property optionalparse: (input: string) => unknownParse function for the column. This is executed on each entry of the header. This can be combined with the Parse function of the rows.