UNPKG

@qn-pandora/pandora-visualization

Version:

Pandora 通用可视化库

10 lines (9 loc) 350 B
import * as React from 'react'; import { IColumnProps } from '../../constant'; export interface ICellProps<T> { col: IColumnProps<T>; renderDom: string | React.ReactNode; handleCellResize: ({ size }: any, dataIndex?: string) => void; width?: number | string; } export default function Cell(props: ICellProps<any>): React.JSX.Element;