В моем среагировать и машинопись приложения, я использую: 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'.