feat: Add expense screen
This commit is contained in:
parent
e1efed5b21
commit
36679279c1
18 changed files with 459 additions and 57 deletions
7
types/dbItems.ts
Normal file
7
types/dbItems.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
export interface Category {
|
||||
guid? : string;
|
||||
name? : string;
|
||||
color? :string;
|
||||
type? : "expense" | "saving"
|
||||
allocatedAmount? : number
|
||||
}
|
||||
Reference in a new issue