feat: add purchases generation
This commit is contained in:
11
src/purchase/types.ts
Normal file
11
src/purchase/types.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
export interface Purchase {
|
||||
name: string;
|
||||
amount: number;
|
||||
datetime: string;
|
||||
location: string;
|
||||
notes?: string;
|
||||
}
|
||||
|
||||
export interface PurchaseList {
|
||||
items: Purchase[];
|
||||
}
|
||||
Reference in New Issue
Block a user