lineToJson.d.ts 181 Bytes Raw Blame History Permalink 1 2 3 4 5 import { Converter } from "./Converter"; export default function (csvRows: string[][], conv: Converter): JSONResult[]; export declare type JSONResult = { [key: string]: any; };