import React from 'react'; import { TabsProps, TabPaneProps } from '@firesoon/antd/lib/tabs/index'; export interface FSTabsProps extends TabsProps { /** 是否以药丸形式展示(建议使用 Radio.Button 代替) */ isPill?: boolean; /** 是否隐藏更多, 在 type="editable-card" 时有效 */ hideMore?: boolean; } export interface TabsDecorator extends React.ClassicComponentClass { TabPane: React.ClassicComponentClass; }