11 lines
179 B
TypeScript
11 lines
179 B
TypeScript
export interface Product {
|
|
id: string;
|
|
name: string;
|
|
price: string;
|
|
description?: string;
|
|
}
|
|
|
|
export async function fetchProductList(): Promise<Product[]> {
|
|
return [];
|
|
}
|