import type { TaxItems } from './TaxItems'; /** * @type Taxes: Document representing the tax rates and (optionally) amounts for all items in a basket. * * @property taxes: Map containing the TaxItems for the line item ids: Map * */ export type Taxes = { taxes: { [key: string]: TaxItems; }; } & { [key: string]: any; };