/** * The geo location configuration */ export interface GeoLocation { /** * The latitude */ latitude: number; /** * The longitude */ longitude: number; }