UNPKG

places-autocomplete-svelte

Version:

A flexible and customisable Svelte component leveraging the Google Maps Places (New) Autocomplete API to provide a user-friendly way to search for and retrieve detailed address information within your SvelteKit applications.

9 lines (8 loc) 357 B
import type { Props } from './interfaces.js'; declare const PlaceAutocomplete: import("svelte").Component<Props, { clear: () => void; focus: () => void; getRequestParams: () => import("./interfaces.js").RequestParams; }, "onResponse" | "onError">; type PlaceAutocomplete = ReturnType<typeof PlaceAutocomplete>; export default PlaceAutocomplete;