আমার প্রতিক্রিয়া এবং টাইপ করা বিষয় অ্যাপ্লিকেশন, আমি ব্যবহার করুন: 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'.