import { Directive, TemplateRef, Input } from '@angular/core'; @Directive({ selector: '[farrisSectionHcontent]', }) export class FarrisSectionHcontentDirective { @Input() hcontentCls: string; constructor( public templateRef: TemplateRef ) { } }