UNPKG

csvtojson

Version:

A tool concentrating on converting csv data to JSON with customised parser supporting

6 lines (5 loc) 173 B
import { Converter } from "./Converter"; export default function (csvRows: string[][], conv: Converter): JSONResult[]; export type JSONResult = { [key: string]: any; };