forked from mirrors/homebox
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 = {
|
export type Currency = {
|
||||||
code: Codes;
|
code: Codes;
|
||||||
|
@ -74,4 +74,10 @@ export const currencies: Currency[] = [
|
||||||
symbol: "$",
|
symbol: "$",
|
||||||
name: "US Dollar",
|
name: "US Dollar",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
code: "BGN",
|
||||||
|
local: "bg-BG",
|
||||||
|
symbol: "lv",
|
||||||
|
name: "Bulgarian lev",
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue