UNPKG

@vertigis/viewer-spec

Version:

VertiGIS Viewer Specification

13 lines (12 loc) 468 B
import type { FeatureListProperties as ApiFeatureListProperties } from "@vertigis/arcgis-extensions/data/FeatureList"; import type { ItemRef } from "../common/ItemRef.js"; import type { FeatureSetProperties } from "./FeatureSetProperties.js"; /** * Properties for a FeatureList. */ export interface FeatureListProperties extends Omit<ApiFeatureListProperties, "featureSet"> { /** * @inheritdoc */ featureSet?: (FeatureSetProperties | ItemRef)[]; }