File size: 179 Bytes
6ff567f
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
export interface Product {
  id: string;
  name: string;
  description: string;
  price: number;
  rating: number;
  imageUrl: string;
  productUrl: string;
  category: string;
}