@gzued/antd-compiled
Version:
Pre-bundled Ant Design 4.x and related dependencies for @gzued packages
10 lines (9 loc) • 380 B
TypeScript
import type { TabPosition, AnimatedConfig } from '../interface';
export interface TabPanelListProps {
activeKey: string;
id: string;
animated?: AnimatedConfig;
tabPosition?: TabPosition;
destroyInactiveTabPane?: boolean;
}
export default function TabPanelList({ id, activeKey, animated, tabPosition, destroyInactiveTabPane, }: TabPanelListProps): JSX.Element;