src/contacts-new/ContactType.ts
/**
* @typedef {Object} ContactType Enum with the possible types of a contact
* @property CONTACTS
* @property DOMAIN
* @property GROUPS
* @property PHONEBOOKS
* @property STATIC
*/
export enum ContactType {
CONTACTS,
DOMAIN,
GROUPS,
PHONEBOOKS,
STATIC,
}