import { MagentoGetSelectedShippingMethodResponse } from '@daffodil/cart/driver/magento'
interface MagentoGetSelectedShippingMethodResponse {
cart: {
__typename: string;
shipping_addresses: {
__typename: string;
selected_shipping_method: MagentoCartShippingMethod;
}[];
}
}
Name | Type | Description |
---|---|---|
cart | { __typename: string; shipping_addresses: { __typename: string; selected_shipping_method: MagentoCartShippingMethod; }[]; } |