/** * 渲染列的逻辑函数 */ import React from 'react'; import { ProTableColumnProps, ProTableActionType } from '../../typing'; interface ICellProps { value: any; item: ProTableColumnProps; index: number; record: any; actionRef: React.MutableRefObject; /** 接收外部比如 dialog-table 传过来的 context,用于弹窗关闭等 */ context?: any; dataTeamixSpm?: string; forcedUpdate?: boolean; } /** * 负责单元格的具体渲染 */ declare const Cell: (props: ICellProps) => JSX.Element; export default Cell;