Code
ts 11 lines 168 Bytes
Raw
1 export interface Review {
2 review: string;
3 authorName: string;
4 date: string;
5 stars: number;
6 }
7
8 export interface Product {
9 name: string;
10 reviews: Review[];
11 }