UNPKG

@goparrot/geocoder

Version:

TypeScript GeoCoder, node geocoding library, supports google maps, mapquest, here, open street map, tom tom

13 lines (12 loc) 419 B
import type { QueryInterface } from '../interface'; import { AccuracyEnum } from './accuracy.enum'; export declare class Query implements QueryInterface { static readonly DEFAULT_RESULT_LIMIT: number; static readonly DEFAULT_RESULT_LANGUAGE: string; accuracy?: AccuracyEnum; countryCode?: string; limit: number; language: string; fillMissingQueryProperties: boolean; withRaw: boolean; }