UNPKG

@regulaforensics/document-reader-typings

Version:
27 lines (26 loc) 471 B
/** * Enumeration contains identifiers determining bar-code module type * @enum {number} */ export declare enum eBarCodeModuleType { /** * Module contains text data */ TEXT = 0, /** * Module contains byte data */ BYTE = 1, /** * Module contains numeric data */ NUM = 2, /** * Shifts in byte compaction mode (for PDF417) */ SHIFT = 3, /** * Module contains any data */ ALL = 4 }