Interface ICurrentChangedArgs<T>

The arguments object for the currentChanged signal.

interface ICurrentChangedArgs<T> {
    currentIndex: number;
    currentTitle: null | Title<T>;
    previousIndex: number;
    previousTitle: null | Title<T>;
}

Type Parameters

  • T

Properties

currentIndex: number

The currently selected index.

currentTitle: null | Title<T>

The currently selected title.

previousIndex: number

The previously selected index.

previousTitle: null | Title<T>

The previously selected title.