Common base for all property items
export interface IPropertyItemBase { enable: boolean; readonly id: string; readonly paneId: string; readonly typeName: PropertyItemType; visible: boolean;} Copy
export interface IPropertyItemBase { enable: boolean; readonly id: string; readonly paneId: string; readonly typeName: PropertyItemType; visible: boolean;}
If the item is enabled in the UI.
Readonly
Unique ID for the property item.
The parent pane id.
The type name of the target property.
If the item should be visible in the UI.
Common base for all property items
Source