@schema-render/search-table-react
Version:
Conditional search table component.
10 lines (9 loc) • 376 B
TypeScript
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;