Home Reference Source

src/contacts-new/Email.ts

import {AddressType} from './AddressType';

/**
 * Represents the email of a contact
 */
export interface Email {
	readonly type: AddressType;
	readonly value: string;
	readonly primary: boolean;
}