csv-stringify
Version:
CSV stringifier implementing the Node.js `stream.Transform` API
18 lines (14 loc) • 315 B
TypeScript
import { Input, Options } from "./index.js";
declare function stringify(input: Input, options?: Options): string;
// export default stringify;
export { stringify };
export {
RecordDelimiter,
Cast,
PlainObject,
Input,
ColumnOption,
CastingContext,
Options,
OptionsNormalized,
} from "./index.js";