import { Coords } from './common'; export type SupportedLocationsRequestLocation = { id: string; coords: Coords; }; export type SupportedLocationsRequest = { locations: Array; }; export type SupportedLocationsResponseLocation = { 'id': string; 'map_name': string; 'additional_map_names': Array; }; export type SupportedLocationsResponse = { 'locations': Array; 'unsupported_locations': Array; };