minishouyin/node_modules/antd/lib/tabs/TabPane.d.ts

8 lines
360 B
TypeScript
Raw Normal View History

2025-11-12 11:35:57 +08:00
import type * as React from 'react';
import type { TabPaneProps as RcTabPaneProps } from 'rc-tabs/lib/TabPanelList/TabPane';
import type { CompatibilityProps } from '.';
type TabPaneProps = CompatibilityProps & Omit<RcTabPaneProps, 'destroyInactiveTabPane'>;
declare const TabPane: React.FC<TabPaneProps>;
export type { TabPaneProps };
export default TabPane;