• Overview
@angular/core/globals

Listener

interface

Event listener configuration returned from getListeners.

  
    interface Listener {}
  
  

name

string

Name of the event listener.

element

Element

Element that the listener is bound to.

callback

(value: any) => any

Callback that is invoked when the event is triggered.

useCapture

boolean

Whether the listener is using event capturing.

type

"dom" | "output"

Type of the listener (e.g. a native DOM event or a custom @Output).

Jump to details