UNPKG

@schema-render/search-table-react

Version:
10 lines (9 loc) 376 B
import type { FC } from 'react'; import type { IColumnType } from '../../typings/table'; export interface IColumnSettingContentProps { sortColumns: IColumnType<any>[]; defaultColumns: IColumnType<any>[]; onOk?: (newSortColumns: IColumnType<any>[]) => void; } declare const ColumnSettingContent: FC<IColumnSettingContentProps>; export default ColumnSettingContent;