diff --git a/packages/shared/src/currencies.ts b/packages/shared/src/currencies.ts index a92441143..4a89ac59c 100644 --- a/packages/shared/src/currencies.ts +++ b/packages/shared/src/currencies.ts @@ -74,5 +74,10 @@ export const CURRENCIES: Record = { name: 'Australian Dollar', ticker: 'AUD', symbol: 'A$' + }, + THB: { + name: 'Thai Baht', + ticker: 'THB', + symbol: '฿' } } diff --git a/packages/shared/src/types/currencies.ts b/packages/shared/src/types/currencies.ts index 85cc0efbd..6a8821bb1 100644 --- a/packages/shared/src/types/currencies.ts +++ b/packages/shared/src/types/currencies.ts @@ -16,4 +16,4 @@ You should have received a copy of the GNU Lesser General Public License along with the library. If not, see . */ -export type Currency = 'CHF' | 'IDR' | 'GBP' | 'EUR' | 'USD' | 'VND' | 'RUB' | 'TRY' | 'CAD' | 'AUD' +export type Currency = 'CHF' | 'IDR' | 'GBP' | 'EUR' | 'USD' | 'VND' | 'RUB' | 'TRY' | 'CAD' | 'AUD' | 'THB'