属性“名称”在HTMLInputElement类型上不存在?

const handleOnChange = (e: React.SyntheticEvent<HTMLInputElement>): void => {
    console.log(e.name);
  }

<input name="aa" onChange={handleOnChange} />

Why HTMLInputElement doesn't have name attribute in react?