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.
10 lines
478 B
10 lines
478 B
|
3 years ago
|
import type { FunctionalComponent } from 'vue';
|
||
|
|
import type { UseNamespaceReturn } from 'element-plus/es/hooks';
|
||
|
|
import type { TableV2HeaderRendererParams } from '../components';
|
||
|
|
import type { TableV2Props } from '../table';
|
||
|
|
declare type HeaderRendererProps = TableV2HeaderRendererParams & Pick<TableV2Props, 'headerClass' | 'headerProps'> & {
|
||
|
|
ns: UseNamespaceReturn;
|
||
|
|
};
|
||
|
|
declare const HeaderRenderer: FunctionalComponent<HeaderRendererProps>;
|
||
|
|
export default HeaderRenderer;
|