9 lines
334 B
TypeScript
9 lines
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;
|