A layout config object for a tab area.

interface ITabAreaConfig {
    currentIndex: number;
    type: "tab-area";
    widgets: Widget[];
}

Properties

currentIndex: number

The index of the selected tab.

type: "tab-area"

The discriminated type of the config object.

widgets: Widget[]

The widgets contained in the tab area.