csvtojson
Version:
A tool concentrating on converting csv data to JSON with customised parser supporting
10 lines (9 loc) • 309 B
TypeScript
import { TransformOptions } from "stream";
import { CSVParseParam } from "./Parameters";
import { Converter } from "./Converter";
declare const helper: {
(param?: Partial<CSVParseParam>, options?: TransformOptions): Converter;
csv: /*elided*/ any;
Converter: typeof Converter;
};
export = helper;