StructureOutputJson
    Preparing search index...

    Type Alias Table

    type Table = {
        columnWidths: number[];
        groupId?: number;
        rect: Rect;
        trs: TableRow[];
        type: "table";
    }
    Index

    Properties

    columnWidths: number[]
    groupId?: number

    a number used to identify elements that are semantically continuous, for example, a table that has broken across pages would be represented by multiple elements, but all with the same group ID

    rect: Rect
    trs: TableRow[]
    type: "table"