UNPKG

hello-csv

Version:

A modern CSV importer written in Preact

5 lines 212 B
import { ParseResult } from 'papaparse'; export type CSVCell = string; export type CSVParsedData = Record<string, CSVCell>; export type ParsedFile = ParseResult<CSVParsedData>; //# sourceMappingURL=types.d.ts.map