Interface AddressInfo

interface AddressInfo {
    country: string;
    postCode: string;
    region: string;
    street: string;
    town: string;
}

Properties

country: string
postCode: string
region: string
street: string
town: string