Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

NavDropdown.d.ts 574B

12345678910111213141516171819202122232425
  1. import * as React from 'react';
  2. import Dropdown from './Dropdown';
  3. import { ReplaceProps } from './helpers';
  4. export interface NavDropdownProps {
  5. id: string;
  6. title: React.ReactNode;
  7. disabled?: boolean;
  8. active?: boolean;
  9. menuRole?: string;
  10. rootCloseEvent?: 'click' | 'mousedown';
  11. bsPrefix?: string;
  12. }
  13. declare class NavDropdown extends React.Component<
  14. ReplaceProps<typeof Dropdown, NavDropdownProps>
  15. > {
  16. static Item: typeof Dropdown.Item;
  17. static Divider: typeof Dropdown.Divider;
  18. static Header: typeof Dropdown.Header;
  19. }
  20. export default NavDropdown;