interface Table {
    boundingBox?: BoundingBox;
    polygon?: Polygon;
    size: {
        columns: number;
        rows: number;
    };
    table: TableCell[][];
}

Properties

boundingBox?: BoundingBox
polygon?: Polygon
size: {
    columns: number;
    rows: number;
}

Type declaration

  • columns: number
  • rows: number
table: TableCell[][]