export interface Phone {
    type: string;
    number: string;
}
export default Phone;
