refactor(medusa): Migrate StoreService to TS (#1413)
This commit is contained in:
@@ -1,4 +1,14 @@
|
||||
export const currencies = {
|
||||
export type Currency = {
|
||||
symbol: string
|
||||
name: string
|
||||
symbol_native: string
|
||||
decimal_digits: number
|
||||
rounding: number
|
||||
code: string
|
||||
name_plural: string
|
||||
}
|
||||
|
||||
export const currencies: Record<string, Currency> = {
|
||||
USD: {
|
||||
symbol: "$",
|
||||
name: "US Dollar",
|
||||
Reference in New Issue
Block a user