mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
14 lines
288 B
TypeScript
14 lines
288 B
TypeScript
export const MAP_CONFIG = { childrenPath: 'children', pathFormat: 'array' };
|
|
|
|
export const DISPLAY_COLUMNS_BY = {
|
|
DATE_PERIODS: 'date_periods',
|
|
TOTAL: 'total',
|
|
};
|
|
|
|
export enum IROW_TYPE {
|
|
AGGREGATE = 'AGGREGATE',
|
|
ACCOUNTS = 'ACCOUNTS',
|
|
ACCOUNT = 'ACCOUNT',
|
|
TOTAL = 'TOTAL',
|
|
}
|