cosovo
    Preparing search index...

    Interface ParseResult

    A parse result always contains three objects: row, errors, and meta. row and errors are arrays, and meta is an object.

    interface ParseResult {
        errors: ParseError[];
        meta: ParseMeta;
        row: string[];
    }
    Index

    Properties

    Properties

    errors: ParseError[]

    an array of errors.

    meta: ParseMeta

    contains extra information about the parse, such as delimiter used, the newline sequence, etc.

    row: string[]

    the cells of the parsed row.