UNPKG

@synotech/utils

Version:

a collection of utilities for internal use

15 lines (13 loc) 262 B
/** * @module customerTypes * @description A list of customerTypes */ export const customerTypes = [ 'commercial', 'non-profit', 'government', 'parastatal', 'individual', 'other', ] as const; export type CustomerTypes = (typeof customerTypes)[number];