feat: edit expense
This commit is contained in:
parent
deda54152b
commit
5b71fa74b1
11 changed files with 273 additions and 41 deletions
|
|
@ -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;
|
||||
}
|
||||
Reference in a new issue