List Pane entry
export interface IListPaneEntry { readonly index: number; readonly slot: IListPaneSlot; readonly type: ListPaneEntryType; readonly visible: boolean; setVisible(visible: boolean): void;} Copy
export interface IListPaneEntry { readonly index: number; readonly slot: IListPaneSlot; readonly type: ListPaneEntryType; readonly visible: boolean; setVisible(visible: boolean): void;}
Readonly
Sequence index of the entry.
Slot that owns the entry.
Type of the entry.
Visibility state of the entry.
New value.
Updates visibility of the entry.
List Pane entry
Source