mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
7 lines
157 B
TypeScript
7 lines
157 B
TypeScript
export enum ROW_TYPE {
|
|
ACCOUNT = 'ACCOUNT',
|
|
OPENING_BALANCE = 'OPENING_BALANCE',
|
|
TRANSACTION = 'TRANSACTION',
|
|
CLOSING_BALANCE = 'CLOSING_BALANCE',
|
|
}
|