iconUtil.d.ts 335 B

12345678
  1. import type { AntTreeNodeProps } from '../Tree';
  2. export interface SwitcherIconProps extends AntTreeNodeProps {
  3. expanded: boolean;
  4. loading: boolean;
  5. }
  6. export default function renderSwitcherIcon(prefixCls: string, switcherIcon: any, showLine: boolean | {
  7. showLeafIcon: boolean;
  8. } | undefined, props: SwitcherIconProps): any;