You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
344 B
11 lines
344 B
3 years ago
|
import { TransformOptions } from "stream";
|
||
|
import { CSVParseParam } from "./Parameters";
|
||
|
import { Converter } from "./Converter";
|
||
|
|
||
|
const helper = function (param?: Partial<CSVParseParam>, options?: TransformOptions): Converter {
|
||
|
return new Converter(param, options);
|
||
|
}
|
||
|
helper["csv"] = helper;
|
||
|
helper["Converter"] = Converter;
|
||
|
export =helper;
|