@scribelabsai/amazon-trp
Version:
Amazon Textract Response Parser library for Node.
14 lines • 394 B
TypeScript
import { Geometry } from './Geometry';
import { Word } from './Word';
import type { BlockMap, LineBlock } from './BlockStruct';
export declare class Line {
block: LineBlock;
confidence: number;
geometry: Geometry;
id: string;
text: string;
words: Word[];
constructor(block: LineBlock, blockMap: BlockMap);
toString(): string;
}
//# sourceMappingURL=Line.d.ts.map