projects/rebirth-ng/src/lib/tabs/tab-title.directive.ts
        
| selector | ng-template[reTabTitle] | 
                    
                        Properties | 
                
                        
  | 
                
constructor(templateRef: TemplateRef
                     | 
                ||||||
| 
                             
                                    Parameters :
                                     
                    
  | 
                
| Public templateRef | 
                        templateRef:     
                     | 
                
                            Type :     TemplateRef<any>
                         | 
                    
import { Directive, TemplateRef } from '@angular/core';
@Directive({
  selector: 'ng-template[reTabTitle]',
})
export class TabTitleDirective {
  constructor(public templateRef: TemplateRef<any>) {
  }
}