Files
bigcapital/packages/webapp/src/constants/InclusiveTaxOptions.ts
2023-10-08 16:07:18 +02:00

8 lines
205 B
TypeScript

import { TaxType } from '@/interfaces/TaxRates';
export const InclusiveTaxOptions = [
{ key: TaxType.Inclusive, label: 'Inclusive of Tax' },
{ key: TaxType.Exclusive, label: 'Exclusive of Tax' },
];