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