@aplus-frontend/antdv
Version:
Vue basic component library maintained based on ant-design-vue
9 lines (8 loc) • 382 B
TypeScript
import type { AntTreeNodeProps } from '../Tree';
export interface SwitcherIconProps extends AntTreeNodeProps {
expanded: boolean;
loading: boolean;
}
export default function renderSwitcherIcon(prefixCls: string, switcherIcon: any, props: SwitcherIconProps, leafIcon?: (props: SwitcherIconProps) => any, showLine?: boolean | {
showLeafIcon: boolean;
} | undefined): any;