0
我正在使用typescript。我有一個反應成分,我聲明如下表單控件的事件:表單事件的Typescript接口聲明
interface FormControlEvent extends React.FormEvent {
currentTarget: HTMLInputElement;
}
爲什麼我得到下面的錯誤與我React.FormEvent以紅色突出顯示的TSLint:
[ts] Generic type 'FormEvent<T>' requires 1 type argument(s).
interface FormEvent<T>