Theia API Documentation v1.65.0
    Preparing search index...

    Interface ITabMovedArgs<T>

    The arguments object for the tabMoved signal.

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

    Type Parameters

    • T
    Index

    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.