interface Location {
    city: null | string;
    country: null | string;
    state: null | string;
    street: null | string;
}

Properties

city: null | string
country: null | string
state: null | string
street: null | string