File size: 246 Bytes
ec4bf22
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
export interface ProductData {
  url: string;
  crawledAt: string;
  brand?: string | null;
  price?: string | null;
  rating?: string | null;
  reviews?: string | null;
  title?: string | null;
  imageUrl?: string | null;
  [key: string]: any;
}