Skip to content

Commit

Permalink
fix(dropdown): address typescript issue with toggle prop (patternfly#935
Browse files Browse the repository at this point in the history
  • Loading branch information
dlabrecq authored and dlabaj committed Nov 20, 2018
1 parent c85c416 commit 8341297
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export interface DropdownProps extends HTMLProps<HTMLDivElement> {
onSelect(event: React.SyntheticEvent<HTMLDivElement>): void;
position?: OneOf<typeof DropdownPosition, keyof typeof DropdownPosition>;
direction?: OneOf<typeof DropdownDirection, keyof typeof DropdownDirection>;
toggle?: OneOf<typeof DropdownToggle, keyof typeof DropdownToggle>;
toggle?: ReactNode;
}

declare const Dropdown: SFC<DropdownProps>;
Expand Down

0 comments on commit 8341297

Please sign in to comment.