mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
18 lines
342 B
TypeScript
18 lines
342 B
TypeScript
export const InitialCurrencies = [
|
|
'USD',
|
|
'CAD',
|
|
'EUR',
|
|
'LYD',
|
|
'GBP',
|
|
'CNY',
|
|
'AUD',
|
|
'INR',
|
|
];
|
|
|
|
export const ERRORS = {
|
|
CURRENCY_NOT_FOUND: 'currency_not_found',
|
|
CURRENCY_CODE_EXISTS: 'currency_code_exists',
|
|
BASE_CURRENCY_INVALID: 'BASE_CURRENCY_INVALID',
|
|
CANNOT_DELETE_BASE_CURRENCY: 'CANNOT_DELETE_BASE_CURRENCY',
|
|
};
|