Dash extensions: EventListener - is it possible to get the event object?

Hello,

I want to display the mouse cursor co-ordinates when hovering over a certain div in my Dash application.

By using the EventListener from the extensions package I am able to trigger a callback with the n_events property as Input.

However I am not sure how I can access the actual event object which is displayed on the console when I set logging = True

MouseEvent {isTrusted: true, screenX: 100, screenY: 166, clientX: 100, clientY: 67, …}

If I could access the properties of the above event object which is logged in the console, I can then easily display the co-ordinates in my Dash application.

How can I get this?

thanks