Interface ITabMovedArgs<T>

The arguments object for the tabMoved signal.

interface ITabMovedArgs<T> {
    fromIndex: number;
    title: Title<T>;
    toIndex: number;
}

Type Parameters

  • T

Properties

fromIndex: number

The previous index of the tab.

title: Title<T>

The title for the tab.

toIndex: number

The current index of the tab.