🐛 Fix Dropdown types, close #13420

This commit is contained in:
afc163 2018-12-04 20:28:48 +08:00
parent cc6402aec6
commit 09dd044c7a
No known key found for this signature in database
GPG Key ID: 738F973FCE5C6B48

View File

@ -19,6 +19,8 @@ export interface DropDownProps {
transitionName?: string;
placement?: 'topLeft' | 'topCenter' | 'topRight' | 'bottomLeft' | 'bottomCenter' | 'bottomRight';
forceRender?: boolean;
mouseEnterDelay?: number;
mouseLeaveDelay?: number;
}
export default class Dropdown extends React.Component<DropDownProps, any> {