UX: search doesn't eternally spin anymore, add debug name for searchProviders

This commit is contained in:
Pieter Vander Vennet 2025-02-03 11:43:43 +01:00
parent d00ccc9282
commit 1ecc63e5c8
10 changed files with 14 additions and 13 deletions

View file

@ -49,6 +49,7 @@ export interface GeocodingOptions {
}
export default interface GeocodingProvider {
readonly name: string
search(query: string, options?: GeocodingOptions): Promise<GeocodeResult[]>
/**