WME/aufgabe5/node_modules/csvtojson/v2/lineToJson.d.ts

6 lines
181 B
TypeScript
Raw Normal View History

2019-01-09 11:25:28 +00:00
import { Converter } from "./Converter";
export default function (csvRows: string[][], conv: Converter): JSONResult[];
export declare type JSONResult = {
[key: string]: any;
};