GitHub

MagentoListCartItemsResponse

import { MagentoListCartItemsResponse } from '@daffodil/cart/driver/magento'
interface MagentoListCartItemsResponse {
  cart: {
    __typename: string;
    items: MagentoCartItem[];
}
}

Properties

Name Type Description
cart { __typename: string; items: MagentoCartItem[]; }