interface ShopifyCart {
id: string
checkoutUrl: string
totalQuantity: number
cost: {
totalAmount: ShopifyMoney
subtotalAmount: ShopifyMoney
totalTaxAmount: ShopifyMoney | null
}
lines: {
edges: Array<{
node: ShopifyCartLine
cursor: string
}>
pageInfo: ShopifyPageInfo
}
}