mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
c1ec3044d7
* Implement LATAM geo-pricing split test * Hide Paypal if currency is one of INR, COP, CLP, PEN * Only send the LATAM/INR banner events when banner is rendered * Workaround in Subscription dashboard for CLP not having minor units GitOrigin-RevId: a677086a7762900563558126d2f81a4c57bbe9d7
23 lines
381 B
TypeScript
23 lines
381 B
TypeScript
export const currencies = <const>{
|
|
USD: '$',
|
|
EUR: '€',
|
|
GBP: '£',
|
|
SEK: 'kr',
|
|
CAD: '$',
|
|
NOK: 'kr',
|
|
DKK: 'kr',
|
|
AUD: '$',
|
|
NZD: '$',
|
|
CHF: 'Fr',
|
|
SGD: '$',
|
|
INR: '₹',
|
|
BRL: 'R$',
|
|
MXN: '$',
|
|
COP: '$',
|
|
CLP: '$',
|
|
PEN: 'S/',
|
|
}
|
|
|
|
type Currency = typeof currencies
|
|
export type CurrencyCode = keyof Currency
|
|
export type CurrencySymbol = Currency[CurrencyCode]
|