@vertigis/viewer-spec 42.10.0 → 42.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,12 @@
1
+ import type { SearchModelProperties as CommonSearchModelProperties } from "../common/SearchModelProperties.js";
2
+ /** The type of search results. */
3
+ export declare type SearchForType = "features" | "addresses" | "features-and-addresses" | "addresses-and-features";
4
+ /**
5
+ * @inheritdoc
6
+ */
7
+ export interface SearchModelProperties extends CommonSearchModelProperties {
8
+ /**
9
+ * Determines what the search component should search for.
10
+ */
11
+ searchFor?: SearchForType;
12
+ }
@@ -0,0 +1 @@
1
+ export{};