Why is Event.target not Element in Typescript?
It doesn’t inherit from Element because not all event targets are elements. From MDN: Element, document, and window are the most common event targets, but other objects can be event targets too, for example XMLHttpRequest, AudioNode, AudioContext, and others. Even the KeyboardEvent you’re trying to use can occur on a DOM element or on the … Read more