В моем приложении реакции и typescript я использую: onChange={(e) => data.motto = (e.target as any).value}
.
Как правильно определить типизацию для класса, так что мне не пришлось бы взломать мой путь вокруг системы типов с помощью any
?
export interface InputProps extends React.HTMLProps<Input> {
...
}
export class Input extends React.Component<InputProps, {}> {
}
Если я поставлю target: { value: string };
, я получаю:
ERROR in [default] /react-onsenui.d.ts:87:18
Interface 'InputProps' incorrectly extends interface 'HTMLProps<Input>'.
Types of property 'target' are incompatible.
Type '{ value: string; }' is not assignable to type 'string'.