Refactored tag list in their own component

This commit is contained in:
Alexis
2024-01-10 21:03:37 +01:00
parent 68eb0d165f
commit d680cae84d
7 changed files with 236 additions and 141 deletions

8
src/types/Search.ts Normal file
View File

@@ -0,0 +1,8 @@
import type { MapMarkerGroup } from "./Leaflet";
/**
* Available advanced search modes for the filter functions
*
* Currently only groups MapMarkerGroup and string "query"
*/
export type SearchMode = "query" | MapMarkerGroup