stopPropagation method

  1. @HostListener.new('click')
  2. @HostListener.new('keypress')
void stopPropagation(
  1. Event e
)

Implementation

@HostListener('click')
@HostListener('keypress')
void stopPropagation(Event e) => e.stopPropagation();