(this: unknown, event: Event)
| 294 | |
| 295 | // global shared zoneAwareCallback to handle all event callback with capture = false |
| 296 | const globalZoneAwareCallback = function (this: unknown, event: Event) { |
| 297 | return globalCallback(this, event, false); |
| 298 | }; |
| 299 | |
| 300 | // global shared zoneAwareCallback to handle all event callback with capture = true |
| 301 | const globalZoneAwareCaptureCallback = function (this: unknown, event: Event) { |
nothing calls this directly
no test coverage detected