Files
Speedtest-Tracker/conf/site/node_modules/react-bootstrap/esm/DropdownMenu.d.ts
2020-07-08 12:08:03 +01:00

16 lines
556 B
TypeScript

import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent, SelectCallback } from './helpers';
export interface DropdownMenuProps extends BsPrefixPropsWithChildren {
show?: boolean;
renderOnMount?: boolean;
flip?: boolean;
alignRight?: boolean;
onSelect?: SelectCallback;
rootCloseEvent?: 'click' | 'mousedown';
popperConfig?: {
modifiers?: any;
};
}
declare type DropdownMenu = BsPrefixRefForwardingComponent<'div', DropdownMenuProps>;
declare const DropdownMenu: DropdownMenu;
export default DropdownMenu;