UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

11 lines (10 loc) 359 B
import type { FunctionalComponent } from 'vue'; import type { DataNode, Key } from './interface'; export interface TreeNodeProps extends Omit<DataNode, 'children'> { value: Key; } /** This is a placeholder, not real render in dom */ declare const TreeNode: FunctionalComponent<TreeNodeProps> & { isTreeSelectNode: boolean; }; export default TreeNode;