/** * This interface represents geolocation coordinates. */ export interface ILocationCoords { lat: number; long: number; } /** * This interface represents location data. */ export interface ILocationInfo extends ILocationCoords { city: string; country: string; region: string; isocountry: string; population: number; }