overleaf/services/web/frontend/js/features/subscription/data/currency.ts

16 lines
228 B
TypeScript
Raw Normal View History

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