UNPKG

@goparrot/geocoder

Version:

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

10 lines (9 loc) 433 B
import type { ClassTransformOptions } from 'class-transformer'; import type { SuggestionInterface } from '../interface'; export declare class Suggestion<ProviderRawEntryType = any> implements SuggestionInterface<ProviderRawEntryType> { formattedAddress: string; placeId: string; provider: string; raw?: ProviderRawEntryType; toObject(options?: ClassTransformOptions): SuggestionInterface<ProviderRawEntryType>; }