@squawk
    Preparing search index...

    Interface ParseRecordError

    A single record that failed to parse, along with the thrown error.

    interface ParseRecordError {
        error: unknown;
        raw: string;
    }
    Index

    Properties

    Properties

    error: unknown

    The error thrown by the parser.

    raw: string

    The raw text that failed to parse.