cosovo
    Preparing search index...

    Interface ParseError

    Error structure

    interface ParseError {
        code:
            | "MissingQuotes"
            | "UndetectableDelimiter"
            | "TooFewFields"
            | "TooManyFields"
            | "InvalidQuotes"
            | "InvalidData";
        message: string;
        type: "Quotes"
        | "Delimiter"
        | "FieldMismatch"
        | "Decoding";
    }
    Index

    Properties

    Properties

    code:
        | "MissingQuotes"
        | "UndetectableDelimiter"
        | "TooFewFields"
        | "TooManyFields"
        | "InvalidQuotes"
        | "InvalidData"

    Standardized error code

    message: string

    Human-readable details

    type: "Quotes" | "Delimiter" | "FieldMismatch" | "Decoding"

    A generalization of the error