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