/** * @type TaxItem: Object representing the taxation. * * @property id: The taxation identifier. * * @property rate: The taxation rate. * * @property value: The tax amount. Will be computed if not set. * */ export type TaxItem = { id: string; rate: number; value?: number; } & { [key: string]: any; };