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

    Interface ParseErrorOptions

    Options for creating a parse error.

    interface ParseErrorOptions {
        cause?: unknown;
        position?: Position;
        rowNumber?: number;
        source?: string;
    }

    Hierarchy

    • ErrorOptions
      • ParseErrorOptions
    Index

    Properties

    cause?: unknown
    position?: Position

    The position where the error occurred.

    rowNumber?: number

    The row number where the error occurred.

    This represents the logical CSV row number (includes header if present), useful for error reporting to users.

    source?: string

    Source identifier (e.g., filename) for error reporting.

    A human-readable identifier for the CSV source to help locate which file or stream caused the error.