ngx-data-ui/projects/poweredsoft/ng-select/src/lib/ps-ng-selectors/not-found-template.directive.ts
2020-07-07 16:36:18 -05:00

12 lines
209 B
TypeScript

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