feat: edit expense

This commit is contained in:
Jakob Stornig 2024-01-05 15:26:09 +01:00
parent deda54152b
commit 5b71fa74b1
11 changed files with 273 additions and 41 deletions

View file

@ -4,4 +4,12 @@ export interface Category {
color? :string;
type? : "expense" | "saving"
allocatedAmount? : number
}
export interface Expense {
guid? : string;
name? : string;
dateTime? : string;
amount?: number;
category_guid?: string;
}