/// import { Transform } from "stream"; import { ColumnValue } from "tedious"; /** * This Transform stream will take the data from a `tedious` query and reformat it's value for an INSERT or UPDATE statement. It will add single quotes ('), N, casts and other * artifacts so that the string representation of the data is consistent and useful. It only works in objectMode. It will accept any other options a Transform stream does. * It pushes an array of values, one entry per column, in the order that the columns show up in. */ export default class FormatRow extends Transform { constructor(options: any); _transform(row: ColumnValue | null, enc: string | null, callback: Function): any; } //# sourceMappingURL=FormatRow.d.ts.map