UNPKG

@vertigis/viewer-spec

Version:

VertiGIS Viewer Specification

15 lines (14 loc) 471 B
import type { SearchModelProperties as CommonSearchModelProperties } from "../common/SearchModelProperties.js"; /** * The type of search results. */ export type SearchForType = "features" | "addresses" | "features-and-addresses" | "addresses-and-features"; /** * @inheritdoc */ export interface SearchModelProperties extends CommonSearchModelProperties { /** * Determines what the search component should search for. */ searchFor?: SearchForType; }