interface InputProps {
type: 'input' | 'textarea'
props: | React.InputHTMLAttributes<HTMLInputElement>
| React.TextareaHTMLAttributes<HTMLTextAreaElement>
}
When type: 'input'
, only allow props
of type
React.InputHTMLAttributes<HTMLInputElement>
.