UNPKG

emvco-qr-sdk

Version:

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

14 lines (13 loc) 598 B
/** * Central registry of tag mapping strategies used during TLV transformation. * * Each entry in the registry defines how a tag is interpreted for a specific region * (e.g., CO, GLOBAL, DEFAULT). Strategies are pure functions that receive a TLV entity * and return a structured object for output. */ import { TagMappingStrategy } from '../../types/tag-resolver.type'; /** * Exports the final registry used by mappers to determine * how to decode TLV tag values. */ export declare const TagMappingRegistryStrategy: Record<string, Record<"GLOBAL" | "CO" | "DEFAULT", TagMappingStrategy>>;