Indexes for the different drawer tabs in the application.
export enum DRAWER_INDEX { /** Closed tab index */ CLOSED = -1, /** Search tab index */ SEARCH = 0, /** History tab index (not implemented yet) */ HISTORY = 1, /** Settings tab index (not implemented yet) */ SETTINGS = 2,} Copy
export enum DRAWER_INDEX { /** Closed tab index */ CLOSED = -1, /** Search tab index */ SEARCH = 0, /** History tab index (not implemented yet) */ HISTORY = 1, /** Settings tab index (not implemented yet) */ SETTINGS = 2,}
Closed tab index
Search tab index
History tab index (not implemented yet)
Settings tab index (not implemented yet)
Indexes for the different drawer tabs in the application.
Source