12 lines
178 B
TypeScript
12 lines
178 B
TypeScript
export interface Purchase {
|
|
name: string;
|
|
amount: number;
|
|
datetime: string;
|
|
location: string;
|
|
notes?: string;
|
|
}
|
|
|
|
export interface PurchaseList {
|
|
items: Purchase[];
|
|
}
|