UNPKG

hongluan-ui

Version:
8 lines (7 loc) 538 B
import type { FunctionalComponent, UnwrapNestedRefs } from 'vue'; import type { TableV2RowCellRenderParam } from '../components'; import type { UseTableReturn } from '../use-table'; import type { TableV2Props } from '../table'; declare type CellRendererProps = TableV2RowCellRenderParam & Pick<TableV2Props, 'cellProps' | 'expandColumnKey' | 'indentSize' | 'iconSize' | 'rowKey'> & UnwrapNestedRefs<Pick<UseTableReturn, 'expandedRowKeys'>>; declare const CellRenderer: FunctionalComponent<CellRendererProps>; export default CellRenderer;