UNPKG

@vertigis/viewer-spec

Version:

VertiGIS Viewer Specification

11 lines (10 loc) 260 B
import type { ComponentModelProperties } from "./ComponentModelProperties.js"; /** * Configuration for a text component. */ export interface TextModelProperties extends ComponentModelProperties { /** * The text content. */ text?: string; }