/** * @type TaxItem: A specific tax item for a line item (e.g. state tax, county tax). * * @property id: The tax item identifier (e.g. STATE, COUNTY). * - **Min Length:** 1 * - **Max Length:** 256 * * @property rate: The tax rate for this tax item. For a 7% tax rate, the value is 0.07. * * @property value: The tax value (amount) for this tax item. * */ export type TaxItem = { id: string; rate: number; value?: number; } & { [key: string]: any; };