Skip to content

Commit

Permalink
type(SearchSelect): Fix type issue (#574).
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Mar 1, 2022
1 parent decdad0 commit cb95e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-search-select/src/index.tsx
Expand Up @@ -20,7 +20,7 @@ export interface SearchSelectProps extends IProps, DropdownProps {
showSearch?: boolean;
allowClear?: boolean;
defaultValue?: ValueType | Array<ValueType>;
tagProps: TagProps;
tagProps?: TagProps;
value?: ValueType | Array<ValueType>;
option: SearchSelectOptionData[];
onSelect?: (value: ValueType | Array<ValueType> | Array<SearchSelectOptionData>) => void;
Expand Down

0 comments on commit cb95e91

Please sign in to comment.