index.d.ts 361 B

1234567891011
  1. import * as React from 'react';
  2. import type { AnimatedConfig, TabPosition } from '../interface';
  3. export interface TabPanelListProps {
  4. activeKey: string;
  5. id: string;
  6. animated?: AnimatedConfig;
  7. tabPosition?: TabPosition;
  8. destroyInactiveTabPane?: boolean;
  9. }
  10. declare const TabPanelList: React.FC<TabPanelListProps>;
  11. export default TabPanelList;