Home Reference Source

src/contacts-new/Phone.ts

import {AddressType} from './AddressType';

/**
 * Represents the phone of a contact
 */
export type Phone = Readonly<{
	type: AddressType;
	value: string;
	primary: boolean;
}>;