app/types/cash.ts

9 lines
No EOL
164 B
TypeScript

export interface OneOffEvent {
id: string
name: string
amount: number
month: number
type: 'income' | 'expense'
category: string
dateExpected: string
}