RAPIDS
    Preparing search index...

    Interface TableWriteCSVOptions

    interface TableWriteCSVOptions {
        columnNames?: string[];
        complete: () => void;
        delimiter?: string;
        falseValue?: string;
        includeHeader?: boolean;
        lineTerminator?: string;
        next: (chunk: Buffer) => void;
        nullValue?: string;
        rowsPerChunk?: number;
        trueValue?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    columnNames?: string[]

    Column names to write in the header.

    complete: () => void

    Callback invoked when writing is finished.

    delimiter?: string

    The field delimiter to write.

    falseValue?: string

    String to use for boolean false values (default 'false').

    includeHeader?: boolean

    Indicates whether to write headers to csv.

    lineTerminator?: string

    Character to use for separating lines,

    next: (chunk: Buffer) => void

    Callback invoked for each CSV chunk.

    nullValue?: string

    String to use for null values.

    rowsPerChunk?: number

    Maximum number of rows to write in each chunk (limits memory use).

    trueValue?: string

    String to use for boolean true values (default 'true').