UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

15 lines (12 loc) 355 B
/** * Copyright IBM Corp. 2024, 2025 */ type BottomPanelDataState = { isExpanded: boolean; currentTabIndex: number; } type BottomPanelDataActions = { setIsExpanded: (isExpanded: boolean) => void; setCurrentTabIndex: (currentTabIndex: number) => void; } export type BottomPanelDataStore = BottomPanelDataState & BottomPanelDataActions;