UNPKG

csvtojson

Version:

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

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