UNPKG

@scribelabsai/amazon-trp

Version:

Amazon Textract Response Parser library for Node.

10 lines 198 B
export class Polygon { constructor(x, y) { this.x = x; this.y = y; } toString() { return `x: ${this.x}, y: ${this.y}`; } } //# sourceMappingURL=Polygon.js.map