import type { TaxItem } from './TaxItem'; /** * @type TaxItems: Taxation for a line item. * * @property taxItems: The list of tax items. It is read only. * */ export type TaxItems = { taxItems?: Array; } & { [key: string]: any; };