@aashari/nodejs-geocoding
Version: 
A lightweight TypeScript/Node.js library for geocoding and reverse geocoding operations with multilingual support
5 lines (4 loc) • 301 B
TypeScript
import { Location } from './location.interface';
export declare const VERSION = "2.7.2";
export declare function encode(formattedAddress: string, language?: string): Promise<Location[]>;
export declare function decode(latitude: number, longitude: number, language?: string): Promise<Location | null>;