Basic product information structure. Used for simplified product representations.
const details: ProductDetails = { name: "Sodium Chloride", description: "ACS grade sodium chloride", price: 19.99, quantity: 500}; Copy
const details: ProductDetails = { name: "Sodium Chloride", description: "ACS grade sodium chloride", price: 19.99, quantity: 500};
Display name of the product
Detailed product description
Current price of the product
Available quantity in stock
Basic product information structure. Used for simplified product representations.
Example