eb18e26c337afbfc96b43c84efe4f7de7c7851e961cb8aaa4c17084f256adb5587c469a9e48f950f93c3c86923654e76e7b01b97b5872fc01c56d7943483fd 629 B

12345678910
  1. import type { FunctionalComponent, UnwrapNestedRefs } from 'vue';
  2. import type { TableV2RowCellRenderParam } from '../components';
  3. import type { UseNamespaceReturn } from 'element-plus/es/hooks';
  4. import type { UseTableReturn } from '../use-table';
  5. import type { TableV2Props } from '../table';
  6. type CellRendererProps = TableV2RowCellRenderParam & Pick<TableV2Props, 'cellProps' | 'expandColumnKey' | 'indentSize' | 'iconSize' | 'rowKey'> & UnwrapNestedRefs<Pick<UseTableReturn, 'expandedRowKeys'>> & {
  7. ns: UseNamespaceReturn;
  8. };
  9. declare const CellRenderer: FunctionalComponent<CellRendererProps>;
  10. export default CellRenderer;