Carbon Components React - MutliSelect types fix (#41779)

* Added the required items type to MultiSelect.d.ts.
This commit is contained in:
Tushar Velingkar
2020-01-23 14:26:05 -08:00
committed by Ben Lichtman
parent 16b047f880
commit e7f05433ff
@@ -20,6 +20,7 @@ interface InheritedProps<T extends ListBoxBaseItemType = string> extends
export interface MultiSelectProps<T extends ListBoxBaseItemType = string> extends InheritedProps<T> {
downshiftProps?: any, // TODO
initialSelectedItems?: T[],
items: T[],
inline?: boolean,
label?: React.ReactNode,
locale?: string,