I want to use captured phase of @HostListener.
@HostListener('document:keydown.escape', ['$event']) onKeydownHandler(event: KeyboardEvent) {
console.log("key pressed");
}
Above code use default(bubble phase). One of the case I want to use captured phase, please help me, how to use captured phase of @HostListener.