UNPKG

@ng-maps/places

Version:

Components related to places library. Currently only an autocomplete directive is implemented that can be attached to an input field to provide places suggestions

7 lines (6 loc) 318 B
import { InjectionToken } from '@angular/core'; export interface NgMapsPlacesConfiguration { autocomplete?: Partial<google.maps.places.AutocompleteOptions>; searchBox?: google.maps.places.SearchBoxOptions; } export declare const NG_MAPS_PLACES_DEFAULT_CONFIGURATION: InjectionToken<NgMapsPlacesConfiguration>;