Type alias Table

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

Type declaration

  • columnWidths: number[]
  • Optional 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"