test/fixtures/sample-files/bar.directive.ts
| Selector | [app-bar] |
Methods |
constructor()
|
| ngOnInit |
ngOnInit()
|
|
Returns :
void
|
import { Directive } from '@angular/core';
@Directive({ selector: '[app-bar]' })
export class BarDirective {
constructor() {}
ngOnInit() {}
}