web-csv-toolbox
    Preparing search index...

    Type Alias CSVString<Header, Delimiter, Quotation>

    CSVString: Header extends readonly [string, ...string[]]
        ?
            | Join<Header, Delimiter, Quotation>
            | ReadableStream<Join<Header, Delimiter, Quotation>>
        : string | ReadableStream<string>

    CSV String.

    Type Parameters

    • Header extends ReadonlyArray<string> = []
    • Delimiter extends string = DEFAULT_DELIMITER
    • Quotation extends string = DEFAULT_QUOTATION