11 lines
196 B
TypeScript
11 lines
196 B
TypeScript
import { Directive, TemplateRef } from '@angular/core';
|
|
|
|
@Directive({
|
|
selector: '[psViewContent]'
|
|
})
|
|
export class ViewContentDirective {
|
|
|
|
constructor(public template: TemplateRef<any>) { }
|
|
|
|
}
|