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