Skip to content

[Web API type definition issue] Node.parentElement has wrong type #2021

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
3 tasks done
trusktr opened this issue May 15, 2025 · 3 comments
Open
3 tasks done

[Web API type definition issue] Node.parentElement has wrong type #2021

trusktr opened this issue May 15, 2025 · 3 comments

Comments

@trusktr
Copy link

trusktr commented May 15, 2025

Summary

Node.parentElement has type HTMLElement | null but it should be Element | null

Expected vs. Actual Behavior

Expected: node.parentElement type to be Element | null
Actual: HTMLElement | null

Playground Link

https://www.typescriptlang.org/play/?#code/MYewdgzgLgBKZQIYEswFMBOMC8MAmIwArgLZoIB0wGaiUaAogDZpkIAUA5HsgG6cBKAFDwkqTBVToMACQAqAWQAyOGJwA8EXgHMAfOr3qA9IaNa9nISPDQY21aJTSKAM2QZozVuSgBhABbITHgAhK7unixsfoHBMIgQMADKAGoA4mle0VbwECAsFEwg2uzaFAAOiDQIWT4wqNCIYMBoIC7J6bUIAjBGRjBQGERoMDk2sNoATKplldVQXbAJHZlRPmOQ+WiFxaXTDUjNre2pq97dvf2ITHkDQ2hCQA

Browser Support

  • This API is supported in at least two major browser engines (not two Chromium-based browsers).

Have Tried The Latest Releases

  • This issue applies to the latest release of TypeScript.
  • This issue applies to the latest release of @types/web.

Additional Context

Proof: run the example in the playground.

Similar to:

@HolgerJeromin
Copy link
Contributor

Typescript does not want to be precise but also usable.
Having errors on code like this would be annoying, too

const div = document.createElement('div')
console.log(div.parentElement?.style.display)

@saschanaz
Copy link
Contributor

saschanaz commented May 15, 2025

Also dupe of #1706 (which is again dupe of #1151)

@HolgerJeromin
Copy link
Contributor

(which is again dupe of #1151)

which was opened by .... trusktr himself :-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants