@HostListener('window:scroll', ['$event'])
public handleScroll(event: any): void {
}
This is working with window scroll, but, sometimes, the scroll bar is appearing on other element.
so, I want to watch all events.
So, I want to like below function, but, below will make error.
@HostListener('*:scroll', ['$event'])