stack/examples/e-commerce/src/shop.tsx
Zai Shi 54027d58a2
New client (#135)
Co-authored-by: Konsti Wohlwend <n2d4xc@gmail.com>
2024-07-19 22:07:44 -07:00

11 lines
151 B
TypeScript

export type Shop = {
displayName: string,
products: Product[],
};
export type Product = {
id: string,
dollarPrice: number,
name: string,
};