This commit is contained in:
Jennie Robinson Faber 2025-09-04 10:42:03 +01:00
parent fc2d9ed56b
commit 983aeca2dc
32 changed files with 1570 additions and 27266 deletions

14
types/budget.ts Normal file
View 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
}