import { type RecordWithColumn } from "https://deno.land/std@0.218.0/csv/parse.ts";
Record type with column type.
Examples
Example 1
Example 1
type RecordWithColumn<"aaa"|"bbb"> => Record<"aaa"|"bbb", string>
type RecordWithColumn<string> => Record<string, string | undefined>