Listener
Event listener configuration returned from getListeners
.
interface Listener {
name: string
element: Element
callback: (value: any) => any
useCapture: boolean
type: 'dom' | 'output'
}
属性
属性 | 说明 |
---|---|
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). |