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 { /** * @inheritdoc */ featureSet?: (FeatureSetProperties | ItemRef)[]; }