@goparrot/geocoder
Version:
TypeScript GeoCoder, node geocoding library, supports google maps, mapquest, here, open street map, tom tom
7 lines (6 loc) • 325 B
TypeScript
import type { Location } from '../model';
import type { GeocoderInterface } from './geocoder.interface';
import type { PlaceDetailsQueryInterface } from './place-details-query.interface';
export interface ProviderInterface extends GeocoderInterface {
placeDetails(query: PlaceDetailsQueryInterface): Promise<Location>;
}