/** * An interface representing the CPQ Line item from order entry. */ export interface LineItem { name?: string; formattedQuantity?: string; formattedPrice?: string; }