UNPKG

@scribelabsai/amazon-trp

Version:

Amazon Textract Response Parser library for Node.

12 lines 350 B
export class BoundingBox { constructor(width, height, left, top) { this.width = width; this.height = height; this.left = left; this.top = top; } toString() { return `width: ${this.width}, height: ${this.height}, left: ${this.left}, top: ${this.top}`; } } //# sourceMappingURL=BoundingBox.js.map