-
Notifications
You must be signed in to change notification settings - Fork 13.2k
Closed
Labels
Domain: lib.d.tsThe issue relates to the different libraries shipped with TypeScriptThe issue relates to the different libraries shipped with TypeScriptFixedA PR has been merged for this issueA PR has been merged for this issueHelp WantedYou can do thisYou can do thisSuggestionAn idea for TypeScriptAn idea for TypeScript
Milestone
Description
TypeScript Version: 2.4.0
Code
let a = document.querySelectorAll("a");
let div = a.closest("div");Expected behavior:
a is an HTMLAnchorElement, and div is an HTMLDivElement.
Actual behavior:
el2 is actually an Element because Element.closest always returns an Element. This was fixed for querySelector in #8114 and the same behavior should be applied to closest.
Metadata
Metadata
Assignees
Labels
Domain: lib.d.tsThe issue relates to the different libraries shipped with TypeScriptThe issue relates to the different libraries shipped with TypeScriptFixedA PR has been merged for this issueA PR has been merged for this issueHelp WantedYou can do thisYou can do thisSuggestionAn idea for TypeScriptAn idea for TypeScript