12 lines
209 B
TypeScript
12 lines
209 B
TypeScript
import { Directive, TemplateRef } from '@angular/core';
|
|
|
|
|
|
@Directive({
|
|
selector: '[psNgNotFoundTemplate]'
|
|
})
|
|
export class NotFoundTemplateDirective {
|
|
|
|
constructor(public template: TemplateRef<any>) { }
|
|
|
|
}
|