UNPKG

emvco-qr-sdk

Version:

A robust TypeScript SDK for decoding, validating, and processing EMVCo-compliant QR codes used in digital payment systems.

11 lines (10 loc) 345 B
/** * Collection of parse-time error messages and error factories. */ export declare const PARSE_ERRORS: { EMPTY_QR: string; INVALID_TLV_FORMAT: (value: string) => string; INVALID_LENGTH: (lengthStr: string, tag: string) => string; EXCEEDS_AVAILABLE: (tag: string) => string; UNSUPPORTED_MODE: (mode: string) => string; };