We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 257dd3a + 3881419 commit a215ceaCopy full SHA for a215cea
packages/types/custom/CHANGELOG.md
@@ -1,5 +1,9 @@
1
# CHANGELOG
2
3
+## unpublished
4
+
5
+- Fix: Add `string` as option for `SearchType` since arbitrary strings can be registered.
6
7
## 1.4.1
8
9
- Fix: Increase type precision of EPSG codes from `string` to `EPSG:${string}`.
packages/types/custom/core.ts
@@ -35,7 +35,7 @@ export interface PluginOptions {
35
export type RenderType = 'iconMenu' | 'independent'
36
37
/** Possible search methods by type */
38
-export type SearchType = 'bkg' | 'gazetteer' | 'wfs' | 'mpapi'
+export type SearchType = 'bkg' | 'gazetteer' | 'wfs' | 'mpapi' | string
39
40
/**
41
* Additional queryParameters for the GET-Request;
0 commit comments