table-render-test
Version:
中后台表格解决方案
12 lines (11 loc) • 330 B
TypeScript
import { FC } from 'react';
import './index.less';
import { Setting } from './utils';
declare const Item: FC<Setting[number] & {
columnKey: string;
isOverlay?: boolean;
isChecked?: boolean;
onFixItem?: (columnKey: string) => void;
onUnfixItem?: (columnKey: string) => void;
}>;
export default Item;