UNPKG

aamva-parser

Version:

Plugin to parse AAMVA Drivers License Data from the PDF417 barcode

10 lines (9 loc) 232 B
import { ParsedLicense } from './parsedLicense'; declare class AAMVA { private data; private licenseParser; constructor(data: string); parse(): ParsedLicense; getVersion(): string | null; } export default AAMVA;