import { ValueSet } from '../diagram/property/value'; /** * Exposes the commands of the property editor component. * @public */ export interface PropertyEditor { /** * Title of the ValueSet displayed in the UI. * @public */ title?: string; /** * ValueSet being edited in this component by the user. * @public */ valueSet?: ValueSet; /** * Highlight the property given by the list of keys it can be found under. * @public * @param propertyNames The keys under which a property can be found in the ValueSet being edited in this component. */ highlightProperty(...propertyNames: string[]): void; }