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.
 
 
 
 

20 line
471 B

  1. import * as React from 'react';
  2. import { BsPrefixComponent, SelectCallback } from './helpers';
  3. export interface DropdownMenuProps {
  4. show?: boolean;
  5. renderOnMount?: boolean;
  6. flip?: boolean;
  7. alignRight?: boolean;
  8. onSelect?: SelectCallback;
  9. rootCloseEvent?: 'click' | 'mousedown';
  10. popperConfig?: object;
  11. }
  12. declare class DropdownMenu<
  13. As extends React.ElementType = 'div'
  14. > extends BsPrefixComponent<As, DropdownMenuProps> {}
  15. export default DropdownMenu;