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