(
type: 'focus' | 'blur',
relatedTarget: EventTarget | null = null,
)
| 12 | readonly relatedTarget: EventTarget | null |
| 13 | |
| 14 | constructor( |
| 15 | type: 'focus' | 'blur', |
| 16 | relatedTarget: EventTarget | null = null, |
| 17 | ) { |
| 18 | super(type, { bubbles: true, cancelable: false }) |
| 19 | this.relatedTarget = relatedTarget |
| 20 | } |
| 21 | } |
| 22 |
nothing calls this directly
no outgoing calls
no test coverage detected