Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
interface CsvStringifyStreamOptions
import { type CsvStringifyStreamOptions } from "https://deno.land/std@0.207.0/csv/mod.ts";

Properties

readonly
optional
separator: string = ","

Delimiter used to separate values.

readonly
optional
columns: Array<string>

A list of columns to be included in the output.

If you want to stream objects, this option is required.