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 }