UNPKG

@goparrot/geocoder

Version:

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

18 lines (17 loc) 882 B
import type { AxiosInstance, AxiosResponse } from 'axios'; import { ReverseCommand } from '../../../command'; import { ArcgisReverseTransformer } from '../transformer'; import type { ArcgisReverseQueryInterface } from '../interface'; import type { ReverseQuery } from '../../../model'; declare const ArcgisReverseCommand_base: typeof ReverseCommand; /** * @link {https://developers.arcgis.com/rest/geocode/api-reference/geocoding-reverse-geocode.htm} */ export declare class ArcgisReverseCommand extends ArcgisReverseCommand_base<ArcgisReverseQueryInterface> { private readonly token?; constructor(httpClient: AxiosInstance, token?: string | undefined); static getUrl(): string; protected buildQuery(query: ReverseQuery): Promise<ArcgisReverseQueryInterface>; protected parseResponse(response: AxiosResponse): Promise<ArcgisReverseTransformer[]>; } export {};