@westrem/currency.info
Version:
currency.info is a collection of information about actively used currencies around the world
174 lines • 5.33 kB
TypeScript
type CurrencyISOCode = "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XCD" | "YER" | "ZAR" | "ZMW" | "ZWL" | "XDR";
interface Currency {
displayName: string;
numericCode: number;
defaultFractionDigits: number;
subUnit: number;
symbolSpaced: boolean;
symbolPosition: "after" | "before";
symbol: string;
isoCode: CurrencyISOCode;
}
declare const currenciesMap: {
[key in CurrencyISOCode]: Currency;
};
declare const currenciesList: Currency[];
export { CurrencyISOCode, Currency };
export { currenciesMap, currenciesList };
export default currenciesMap;
export * from './AED';
export * from './AFN';
export * from './ALL';
export * from './AMD';
export * from './ANG';
export * from './AOA';
export * from './ARS';
export * from './AUD';
export * from './AWG';
export * from './AZN';
export * from './BAM';
export * from './BBD';
export * from './BDT';
export * from './BGN';
export * from './BHD';
export * from './BIF';
export * from './BMD';
export * from './BND';
export * from './BOB';
export * from './BRL';
export * from './BSD';
export * from './BTN';
export * from './BWP';
export * from './BYN';
export * from './BZD';
export * from './CAD';
export * from './CDF';
export * from './CHF';
export * from './CLP';
export * from './CNY';
export * from './COP';
export * from './CRC';
export * from './CUC';
export * from './CUP';
export * from './CVE';
export * from './CZK';
export * from './DJF';
export * from './DKK';
export * from './DOP';
export * from './DZD';
export * from './EGP';
export * from './ERN';
export * from './ETB';
export * from './EUR';
export * from './FJD';
export * from './FKP';
export * from './GBP';
export * from './GEL';
export * from './GHS';
export * from './GIP';
export * from './GMD';
export * from './GNF';
export * from './GTQ';
export * from './GYD';
export * from './HKD';
export * from './HNL';
export * from './HRK';
export * from './HTG';
export * from './HUF';
export * from './IDR';
export * from './ILS';
export * from './INR';
export * from './IQD';
export * from './IRR';
export * from './ISK';
export * from './JMD';
export * from './JOD';
export * from './JPY';
export * from './KES';
export * from './KGS';
export * from './KHR';
export * from './KMF';
export * from './KPW';
export * from './KRW';
export * from './KWD';
export * from './KYD';
export * from './KZT';
export * from './LAK';
export * from './LBP';
export * from './LKR';
export * from './LRD';
export * from './LSL';
export * from './LYD';
export * from './MAD';
export * from './MDL';
export * from './MGA';
export * from './MKD';
export * from './MMK';
export * from './MNT';
export * from './MOP';
export * from './MRO';
export * from './MUR';
export * from './MVR';
export * from './MWK';
export * from './MXN';
export * from './MYR';
export * from './MZN';
export * from './NAD';
export * from './NGN';
export * from './NIO';
export * from './NOK';
export * from './NPR';
export * from './NZD';
export * from './OMR';
export * from './PAB';
export * from './PEN';
export * from './PGK';
export * from './PHP';
export * from './PKR';
export * from './PLN';
export * from './PYG';
export * from './QAR';
export * from './RON';
export * from './RSD';
export * from './RUB';
export * from './RWF';
export * from './SAR';
export * from './SBD';
export * from './SCR';
export * from './SDG';
export * from './SEK';
export * from './SGD';
export * from './SHP';
export * from './SLL';
export * from './SOS';
export * from './SRD';
export * from './SSP';
export * from './STD';
export * from './SVC';
export * from './SYP';
export * from './SZL';
export * from './THB';
export * from './TJS';
export * from './TMT';
export * from './TND';
export * from './TOP';
export * from './TRY';
export * from './TTD';
export * from './TWD';
export * from './TZS';
export * from './UAH';
export * from './UGX';
export * from './USD';
export * from './UYU';
export * from './UZS';
export * from './VEF';
export * from './VND';
export * from './VUV';
export * from './WST';
export * from './XCD';
export * from './YER';
export * from './ZAR';
export * from './ZMW';
export * from './ZWL';
export * from './XDR';
//# sourceMappingURL=index.d.ts.map