Files: 7cc4808dbfe9bd370a1f0df3485981c9a7b048e4 / src / domain / types.js
285 bytesRaw
1 | const blockTypes = { |
2 | GROUP: 'group', |
3 | EARNING: 'earning', |
4 | EXPENSE: 'expense', |
5 | }; |
6 | module.exports.blockTypes = blockTypes; |
7 | |
8 | const blockIdentifiers = { |
9 | BALANCE: '$', |
10 | GROUP: '|', |
11 | EARNING: '+', |
12 | EXPENSE: '-', |
13 | TOTAL: '=', |
14 | }; |
15 | module.exports.blockIdentifiers = blockIdentifiers; |
16 |
Built with git-ssb-web