Home Reference Source

src/contacts/AddressType.ts

/**
 * @typedef {Object} AddressType Enum with the possible types of a phone or an email
 * @property HOME
 * @property WORK
 * @property OTHER
 */
export enum AddressType {
	HOME,
	WORK,
	OTHER,
}