| 13 | } |
| 14 | |
| 15 | export interface ProductModel { |
| 16 | _id: string; |
| 17 | categories: string[]; |
| 18 | tags: string[]; |
| 19 | title: string; |
| 20 | link: string; |
| 21 | price: number; |
| 22 | credit: number; |
| 23 | oldPrice: number; |
| 24 | description: string; |
| 25 | characteristics: ProductCharacteristic[]; |
| 26 | createdAt: Date; |
| 27 | updatedAt: Date; |
| 28 | __v: number; |
| 29 | image: string; |
| 30 | initialRating: number; |
| 31 | reviews: ReviewModel[]; |
| 32 | reviewCount: number; |
| 33 | reviewAvg?: number; |
| 34 | advantages?: string; |
| 35 | disadvantages?: string; |
| 36 | } |
nothing calls this directly
no outgoing calls
no test coverage detected