UNPKG

@goparrot/geocoder

Version:

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

9 lines (8 loc) 235 B
/** * All library exceptions must inherit this class. */ export declare class GeocoderException extends Error { private readonly payload?; constructor(message: string, payload?: unknown); getPayload(): any | undefined; }