@ant-design/pro-table
Version:
🏆 Use Ant Design Table like a Pro!
9 lines (8 loc) • 334 B
TypeScript
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;