私の反応とタイプスクリプトアプリでは、次を使用します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'.