UNPKG

@vertigis/viewer-spec

Version:

VertiGIS Viewer Specification

15 lines (14 loc) 360 B
import type { ModelProperties } from "./ModelProperties.js"; /** * Properties that can be used to create or update a component model. */ export interface ComponentModelProperties extends ModelProperties { /** * An icon ID for this model. */ icon?: string; /** * A human-readable title for this model. */ title?: string; }