UNPKG

ffc-pay-etl-framework

Version:

A framework for creating ETL pipelines in node

17 lines 460 B
/** * * @param {Object} options * @param {String} options.fileName * @param {Boolean} options.headers * @param {Boolean} options.includeErrors * @param {Boolean} options.quotationMarks * @returns Writable */ export function CSVFileDestination(options: { fileName: string; headers: boolean; includeErrors: boolean; quotationMarks: boolean; }): Writable; import { Writable } from "stream"; //# sourceMappingURL=csvFileDestination.d.ts.map