interface ILocation {
    address: string;
    city: string;
    country: string;
    latitude: number;
    longitude: number;
    postalCode: string;
    state: string;
}

Properties

address: string

Address

ILocation

city: string

City

ILocation

country: string

Country

ILocation

latitude: number

Latitude

ILocation

longitude: number

Longitude

ILocation

postalCode: string

Postal code

ILocation

state: string

State

ILocation