interface IAdresses {
    city: string;
    complement: string;
    country: string;
    neighborhood: string;
    number: number;
    state: string;
    street: string;
    zip_code: number;
}

Properties

city: string
complement: string
country: string
neighborhood: string
number: number
state: string
street: string
zip_code: number