UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

15 lines (12 loc) 238 B
/** * Copyright IBM Corp. 2024, 2025 */ import { ReactNode } from "react"; export interface CarbonActiveTabs { selectedIndex: number; } export interface CarbonTabsProps { label: string; panel: ReactNode; disabled?: boolean; }