UNPKG

rc-table

Version:
18 lines (15 loc) 455 B
import PropTypes from 'prop-types'; function Column() {} Column.propTypes = { className: PropTypes.string, colSpan: PropTypes.number, title: PropTypes.node, dataIndex: PropTypes.string, width: PropTypes.oneOfType([PropTypes.number, PropTypes.string]), fixed: PropTypes.oneOf([true, 'left', 'right']), render: PropTypes.func, onCellClick: PropTypes.func, onCell: PropTypes.func, onHeaderCell: PropTypes.func }; export default Column;