@webshop/root - v1.0.0
    Preparing search index...

    Type Alias CartItem

    Represents database response from cart_item table. Used for saving an amount of a specific item in the cart.

    type CartItem = {
        orderId: number;
        productId: number;
        quantity: number;
    }
    Index

    Properties

    orderId: number
    productId: number
    quantity: number