test/fixtures/sample-files-extends/src/app/a.directive.ts
The a directive
Selector | [a] |
Properties |
constructor()
|
constructor description |
title |
Type : string
|
import { Directive, HostBinding, HostListener, Input } from '@angular/core';
/**
* The a directive
*/
@Directive({
selector: '[a]',
})
export class ADirective {
title: string;
/**
* constructor description
*/
constructor() {}
}