GitHub

MagentoCartAddress

import { MagentoCartAddress } from '@daffodil/cart/driver/magento'

interface MagentoCartAddress {
  region: { code: string; region_id: number; }
  country: { code: string; label: string; }
  street: string[]
  company: string
  telephone: string
  postcode: string
  city: string
  firstname: string
  lastname: string
  email: string
  customer_address_id: number
}