UNPKG

emvco-qr-sdk

Version:

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

12 lines (11 loc) 425 B
import { TagMappingStrategy } from '../../types/tag-resolver.type'; /** * Default strategy used when no specific interpretation is required. * * This strategy simply returns the raw TLV object without transformation. * Used for fallback behavior in GLOBAL or DEFAULT regions. * * @param tlv - The original TLV entity. * @returns The unmodified TLV entity. */ export declare const defaultStrategy: TagMappingStrategy;