This repository has been archived on 2026-02-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
synthetic-consumer-data/src/purchase/types.ts

12 lines
178 B
TypeScript

export interface Purchase {
name: string;
amount: number;
datetime: string;
location: string;
notes?: string;
}
export interface PurchaseList {
items: Purchase[];
}