UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

14 lines 425 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; export {}; //# sourceMappingURL=bottom-panel-info.store.model.d.ts.map