src/lib/tree-content.directive.ts
| Selector | ng-template[rxapTreeContent] |
| Standalone | true |
Properties |
|
constructor(template: TemplateRef
|
||||||
|
Defined in src/lib/tree-content.directive.ts:11
|
||||||
|
Parameters :
|
| Public Readonly template |
Type : TemplateRef<any>
|
Decorators :
@Inject(TemplateRef)
|
|
Defined in src/lib/tree-content.directive.ts:14
|
import {
Directive,
Inject,
TemplateRef,
} from '@angular/core';
@Directive({
selector: 'ng-template[rxapTreeContent]',
standalone: true,
})
export class TreeContentDirective {
constructor(
@Inject(TemplateRef)
public readonly template: TemplateRef<any>,
) {
}
}