UNPKG

@synotech/utils

Version:

a collection of utilities for internal use

12 lines (11 loc) 214 B
/** * @module contactType * @description A list of contactType */ export const contactType = [ 'employee', 'supplier', 'customer', 'user', ] as const; export type ContactType = (typeof contactType)[number];