@eagleoutice/flowr - v2.10.0
    Preparing search index...

    CsvEntry type - mapping of ParsedDataRow to a JS object structure. Contains construction information - whether we deal with a terminal, IDs, and children.

    interface CsvEntry {
        children?: CsvEntry[];
        col1: number;
        col2: number;
        id: number;
        line1: number;
        line2: number;
        parent: number;
        terminal: boolean;
        text: string;
        token: string;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown

    Hierarchy-Diagram

    UML class diagram of CsvEntry
    Index

    Properties

    children?: CsvEntry[]
    col1: number
    col2: number
    id: number
    line1: number
    line2: number
    parent: number
    terminal: boolean
    text: string
    token: string