mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-13 11:20:31 +00:00
15 lines
330 B
JavaScript
15 lines
330 B
JavaScript
export const RESOURCES_TYPES = {
|
|
INVOICE: 'invoice',
|
|
ESTIMATE: 'estimate',
|
|
RECEIPT: 'receipt',
|
|
PAYMENT_RECEIVE: 'payment_receive',
|
|
PAYMENT_MADE: 'payment_made',
|
|
CUSTOMER: 'customer',
|
|
VENDOR: 'vendor',
|
|
ITEM: 'item',
|
|
BILL: 'bill',
|
|
EXPENSE: 'expense',
|
|
MANUAL_JOURNAL: 'manual_journal',
|
|
ACCOUNT: 'account',
|
|
};
|