mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
8 lines
205 B
TypeScript
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' },
|
|
];
|