UNPKG

@university-ecosystem/ui-kit

Version:
11 lines (10 loc) 357 B
import { Option } from './components'; import { InputProps } from '../input/interfaces'; export type OmitedInput = Omit<InputProps, 'value'>; export interface SelectProps extends OmitedInput { value: Array<Option>; options: Array<Option>; multiSelect?: boolean; disableSearch?: boolean; onSelectOption: (value: Array<Option>) => void; }