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