mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
11 lines
151 B
TypeScript
11 lines
151 B
TypeScript
export type Shop = {
|
|
displayName: string,
|
|
products: Product[],
|
|
};
|
|
|
|
export type Product = {
|
|
id: string,
|
|
dollarPrice: number,
|
|
name: string,
|
|
};
|