this interface represents the item inside an order, so the item itself in the ordered quantity

interface OrderItem {
    item: Item;
    quantity: number;
}

Properties

Properties

item: Item
quantity: number