Skip to content

Commit

Permalink
fix(index.d.ts): CDropdownDivider and CDropdownHeader not defined
Browse files Browse the repository at this point in the history
- closes #170
- thanks @Ygilany
  • Loading branch information
xidedix committed Dec 18, 2020
1 parent 4ae0d80 commit 0f4ee16
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,10 @@ interface CDropdownItem extends CLink {
active?: boolean;
}

interface CDropdownDivider extends CDropdownItem { }

interface CDropdownHeader extends CDropdownItem { }

interface CDropdownMenu extends HTMLPropsNoClassName {
children: ChildElement;
className?: className;
Expand Down Expand Up @@ -1083,6 +1087,8 @@ export declare const CCreateElement: (props: CCreateElement) => any;
export declare const CDataTable: (props: CDataTable) => any;
export declare const CDropdown: (props: CDropdown) => any;
export declare const CDropdownItem: (props: CDropdownItem) => any;
export declare const CDropdownDivider: (props: CDropdownDivider) => any;
export declare const CDropdownHeader: (props: CDropdownHeader) => any;
export declare const CDropdownMenu: (props: CDropdownMenu) => any;
export declare const CDropdownToggle: (props: CDropdownToggle) => any;
export declare const CElementCover: (props: CElementCover) => any;
Expand Down

0 comments on commit 0f4ee16

Please sign in to comment.