ในแอป react และ typescript ของฉันฉันใช้: onChange={(e) => data.motto = (e.target as any).value}
.
ฉันจะทำอย่างไรได้อย่างถูกต้องกำหนด typings สำหรับการเรียนดังนั้นฉันจะได้ไม่ต้องตัดทางของฉันรอบระบบการพิมพ์ด้วย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'.