emvco-qr-sdk
Version:
A robust TypeScript SDK for decoding, validating, and processing EMVCo-compliant QR codes used in digital payment systems.
19 lines (18 loc) • 557 B
TypeScript
/**
* Constants representing region codes used for strategy resolution and tag interpretation.
* These values are used internally by the mapping services to resolve tag-specific logic.
*/
export declare const REGIONS: {
/**
* Region code for Colombia-specific parsing strategies.
*/
readonly CO: "CO";
/**
* Region code for globally standardized parsing (EMVCo default).
*/
readonly GLOBAL: "GLOBAL";
/**
* Fallback region code when no specific mapping is defined.
*/
readonly DEFAULT: "DEFAULT";
};