Get deltaY from scroll event

I am trying to set up a project for use with mobile and desktop but the wheel event doesn’t work on mobile, so I need to use scroll.

I know how to get the deltaY from the Wheel event:

window.addEventListener("wheel", event => console.info(event.deltaY));

How do I get the deltaY from the Scroll event?