mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-12 22:01:02 +00:00
16 lines
228 B
TypeScript
16 lines
228 B
TypeScript
|
export const currencies = <const>{
|
||
|
USD: '$',
|
||
|
EUR: '€',
|
||
|
GBP: '£',
|
||
|
SEK: 'kr',
|
||
|
CAD: '$',
|
||
|
NOK: 'kr',
|
||
|
DKK: 'kr',
|
||
|
AUD: '$',
|
||
|
NZD: '$',
|
||
|
CHF: 'Fr',
|
||
|
SGD: '$',
|
||
|
}
|
||
|
|
||
|
export type CurrencyCode = keyof typeof currencies
|