Skip to content

Commit

Permalink
Fixed #2845 - Dropdown and MultiSelect: TS2322 compilcation error
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Aug 16, 2022
1 parent 6a3f7bf commit 4f5ae18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/dropdown/Dropdown.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export interface DropdownFilterEvent {
value: any;
}

export interface DropdownProps extends HTMLDivElement {
export interface DropdownProps {
/**
* Value of the component.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/components/multiselect/MultiSelect.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export interface MultiSelectFilterEvent {
value: string;
}

export interface MultiSelectProps extends HTMLDivElement {
export interface MultiSelectProps {
/**
* Value of the component.
*/
Expand Down

0 comments on commit 4f5ae18

Please sign in to comment.