UNPKG

local-currency-symbol

Version:

A utility package to map currency codes to their symbols and handle currency symbol positioning based on locale

13 lines (12 loc) 278 B
/** * Interface for currency code to symbol mapping */ interface CurrencyMap { [key: string]: string; } /** * Mapping of currency codes to their corresponding symbols * Supports over 150 currencies worldwide */ export declare const currencyMap: CurrencyMap; export {};