UNPKG

traveltime-api

Version:
17 lines (16 loc) 429 B
import { Coords } from './common'; export type GeocodingBounds = { southEast: Coords; northWest: Coords; }; export type GeocodingSearchRequest = { acceptLanguage?: string; params: { limit?: number; 'force.add.postcode'?: boolean; bounds?: GeocodingBounds; 'within.country'?: string[] | string; 'format.name'?: boolean; 'format.exclude.country'?: boolean; }; };