feat: add purchases generation

This commit is contained in:
2024-11-24 11:16:42 +01:00
parent d5fd74b0c5
commit a73f5b883c
16 changed files with 408 additions and 132 deletions

11
src/purchase/types.ts Normal file
View File

@@ -0,0 +1,11 @@
export interface Purchase {
name: string;
amount: number;
datetime: string;
location: string;
notes?: string;
}
export interface PurchaseList {
items: Purchase[];
}