Skip to content

ProductSku

The ProductSku type represents the structure of a product SKU, including details such as quantity and pricing. In summary, its signature and the types used follow this contract:

type ProductSku = {
id: string;
name: string;
quantity: number;
price: number;
listPrice: number;
};