app/types/budget.ts
2025-09-04 10:42:03 +01:00

14 lines
No EOL
287 B
TypeScript

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
}