UNPKG

cosmo-ui

Version:
10 lines (7 loc) 310 B
import { FormFieldProps, FormFieldComponentProps } from './form-field' export interface SelectProps extends FormFieldProps<any> { options: any[] } export interface SelectComponentProps extends SelectProps, FormFieldComponentProps<any> { options: any[] // repeat here to confirm that it is required }