MCPcopy Index your code
hub / github.com/angular/angular / EventDir

Class EventDir

packages/core/test/linker/regression_integration_spec.ts:469–480  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

467 }
468
469 @Directive({
470 selector: '[dirClick]',
471 standalone: false,
472 })
473 class EventDir {
474 @Output() dirClick = new EventEmitter();
475
476 @HostListener('click', ['$event'])
477 onClick(event: any) {
478 this.dirClick.next(event);
479 }
480 }
481
482 @NgModule({
483 imports: [BrowserModule],

Callers

nothing calls this directly

Calls 3

DirectiveClass · 0.90
OutputInterface · 0.90
HostListenerInterface · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…