UNPKG

@synotech/utils

Version:

a collection of utilities for internal use

8 lines (6 loc) 190 B
/** * @module taxTypes * @description A list of taxTypes */ export const taxTypes = ['sales', 'purchase', 'payroll', 'other'] as const; export type TaxTypes = (typeof taxTypes)[number];