forked from mirrors/homebox
461be2afca
* initial UI for currency selection * add task to purge invitation tokens * group API contracts * fix type import * use auth middleware * add currency setting support (UI) * use group settings for format currency * fix casing
35 lines
540 B
TypeScript
35 lines
540 B
TypeScript
export type Codes = "USD" | "EUR" | "GBP" | "JPY";
|
|
|
|
export type Currency = {
|
|
code: Codes;
|
|
local: string;
|
|
symbol: string;
|
|
name: string;
|
|
};
|
|
|
|
export const currencies: Currency[] = [
|
|
{
|
|
code: "USD",
|
|
local: "en-US",
|
|
symbol: "$",
|
|
name: "US Dollar",
|
|
},
|
|
{
|
|
code: "EUR",
|
|
local: "de-DE",
|
|
symbol: "€",
|
|
name: "Euro",
|
|
},
|
|
{
|
|
code: "GBP",
|
|
local: "en-GB",
|
|
symbol: "£",
|
|
name: "British Pound",
|
|
},
|
|
{
|
|
code: "JPY",
|
|
local: "ja-JP",
|
|
symbol: "¥",
|
|
name: "Japanese Yen",
|
|
},
|
|
];
|