UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

15 lines (12 loc) 266 B
/** * Copyright Super iPaaS Integration LLC, an IBM Company 2024 */ import { ReactNode } from "react"; export interface CarbonActiveTabs { selectedIndex: number; } export interface CarbonTabsProps { label: string; panel: ReactNode; disabled?: boolean; }