@briancullen/aws-textract-parser
Version:
Library for converting AWS Textract responses into a more usable structure.
18 lines (17 loc) • 553 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Enum used to identify the different types of block that can
* be in the returned tree
*/
var BlockType;
(function (BlockType) {
/** Indicates a Word Block */
BlockType["Word"] = "WORD";
/** Indicates a Line Block */
BlockType["Line"] = "LINE";
/** Indicates a Page Block */
BlockType["Page"] = "PAGE";
/** Indicates a Document Block */
BlockType["Document"] = "DOCUMENT";
})(BlockType = exports.BlockType || (exports.BlockType = {}));
;