UNPKG

@lynsoluciones/medusa-docs

Version:
15 lines (14 loc) 310 B
export type CurrencyType = { symbol: string; name: string; symbol_native: string; decimal_digits: number; rounding: number; code: string; name_plural: string; }; type CurrenciesType = { [key: string]: CurrencyType; }; export declare const currencies: CurrenciesType; export {};