I got TS2339: Property 'target' does not exist on type 'Event'. in below code:
this.$Element.on('click', SELECTOR, (event: JQuery.Event) => {
const $ClickedLink: JQuery<HTMLElement> = JQuery(event.target);
//
}
event.currentTarget is also does not exist, as ... defined in JQuery types?
Of course, there are no errors in compiled JavaScript.
This code is not the Angular! I just combine JQuery and class-based OOP.