Commit c98963e6 authored by Kevin Lee's avatar Kevin Lee Committed by ι™ˆεΈ…

fix(typings): completed the type definition of the HeaderDropdown component (#3694)

parent 32918e44
import * as React from 'react'; import * as React from 'react';
export default class HeaderDropdown extends React.Component<any, any> {} import { DropDownProps } from 'antd/lib/dropdown';
export interface IHeaderDropdownProps extends DropDownProps {
overlayClassName?: string;
}
export default class HeaderDropdown extends React.Component<IHeaderDropdownProps, any> {}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment