UNPKG

@scribelabsai/amazon-trp

Version:

Amazon Textract Response Parser library for Node.

14 lines 406 B
import { Geometry } from '../Geometry'; import { Row } from './Row'; import type { TableBlock, BlockMap } from '../BlockStruct'; export declare class Table { block: TableBlock; confidence: number; geometry: Geometry; id: string; rows: Row[]; constructor(block: TableBlock, blockMap: BlockMap); toString(): string; toArray(): string[][]; } //# sourceMappingURL=Table.d.ts.map