matthew-matvei/freeman

View on GitHub
src/interfaces/states/modals/IQuickSelectState.ts

Summary

Maintainability
A
0 mins
Test Coverage
/** The internal state of the QuickSelect component. */
interface IQuickSelectState {

    /** The index of the selected item. */
    selectedIndex: number;
}

export default IQuickSelectState;