import IBaseClass from '../BaseClass'; export interface ICartReservedQuantities extends IBaseClass { /** The cart ID associated with */ readonly cart_id: string; /** List of items reserved and the quantity */ readonly items: { sku: string; qty: number; }[]; }