mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-16 13:48:44 +00:00
parent
3e2f6a96bf
commit
ad20e4e39b
1 changed files with 7 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
export type Codes = "USD" | "EUR" | "GBP" | "JPY" | "ZAR" | "AUD" | "NOK" | "SEK" | "DKK" | "INR" | "RMB";
|
||||
export type Codes = "USD" | "EUR" | "GBP" | "JPY" | "ZAR" | "AUD" | "NOK" | "SEK" | "DKK" | "INR" | "RMB" | "BGN";
|
||||
|
||||
export type Currency = {
|
||||
code: Codes;
|
||||
|
@ -74,4 +74,10 @@ export const currencies: Currency[] = [
|
|||
symbol: "$",
|
||||
name: "US Dollar",
|
||||
},
|
||||
{
|
||||
code: "BGN",
|
||||
local: "bg-BG",
|
||||
symbol: "lv",
|
||||
name: "Bulgarian lev",
|
||||
},
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue