web-csv-toolbox - v0.14.0
    Preparing search index...

    Type Alias BinaryCSVParser<Header, Format>

    BinaryCSVParser: Format extends "array"
        ? BinaryArrayCSVParser<Header>
        : BinaryObjectCSVParser<Header>

    Unified Binary CSV Parser type.

    This is a discriminated union type that can represent either object or array parsers. Use this when you need to work with parsers in a format-agnostic way.

    Type Parameters

    • Header extends ReadonlyArray<string> = readonly string[]

      Array of header field names

    • Format extends "object" | "array" = "object"

      Output format: 'object' or 'array' (default: 'object')