You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
637 B
11 lines
637 B
|
3 years ago
|
import type { FunctionalComponent, UnwrapNestedRefs } from 'vue';
|
||
|
|
import type { TableV2RowCellRenderParam } from '../components';
|
||
|
|
import type { UseNamespaceReturn } from 'element-plus/es/hooks';
|
||
|
|
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'>> & {
|
||
|
|
ns: UseNamespaceReturn;
|
||
|
|
};
|
||
|
|
declare const CellRenderer: FunctionalComponent<CellRendererProps>;
|
||
|
|
export default CellRenderer;
|