UNPKG

@ant-design/pro-table

Version:
9 lines (8 loc) 334 B
import { type TableColumnType } from 'antd'; import React from 'react'; import type { SettingOptionType } from '../ToolBar'; type ColumnSettingProps<T = any> = SettingOptionType & { columns: TableColumnType<T>[]; }; declare function ColumnSetting<T>(props: ColumnSettingProps<T>): React.JSX.Element; export default ColumnSetting;