import type { CheckoutOrder, CheckoutOrderItem } from '@farfetch/blackout-client'; import type { CheckoutOrderItemEntityDenormalized } from './checkoutOrderItem.types.js'; export type CheckoutOrderEntity = Omit & { items: Array; }; export type CheckoutOrderEntityDenormalized = Omit & { items: CheckoutOrderItemEntityDenormalized[] | undefined; };