13 lines
348 B
TypeScript
13 lines
348 B
TypeScript
import { type ProductAttribute } from "../products/product-attribute";
|
|
|
|
export interface ProductDetails {
|
|
title?: string;
|
|
price?: number;
|
|
// listPrice?: number;
|
|
description?: string;
|
|
featureBullets?: string[];
|
|
reviewRating?: number;
|
|
reviewCount?: number;
|
|
imageUrls?: string[];
|
|
attributes?: ProductAttribute[];
|
|
}; |