Interface TabGroupChangeEvent

An event describing changes to tab groups.

interface TabGroupChangeEvent {
    changed: readonly TabGroup[];
    closed: readonly TabGroup[];
    opened: readonly TabGroup[];
}

Properties

Properties

changed: readonly TabGroup[]

Tab groups that have changed, e.g have changed their active state.

closed: readonly TabGroup[]

Tab groups that have been closed.

opened: readonly TabGroup[]

Tab groups that have been opened.