Cleanup
This commit is contained in:
parent
fc2d9ed56b
commit
983aeca2dc
32 changed files with 1570 additions and 27266 deletions
14
types/budget.ts
Normal file
14
types/budget.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
export type BudgetLine = {
|
||||
orgId: string
|
||||
year: number
|
||||
month: 1|2|3|4|5|6|7|8|9|10|11|12
|
||||
type: 'revenue' | 'expense'
|
||||
category: 'Games'|'Services'|'Grants'|'Other'|string
|
||||
planned: number
|
||||
}
|
||||
|
||||
export type OrgYearSettings = {
|
||||
orgId: string
|
||||
year: number
|
||||
startingCash: number
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue