UiPath/angular-components

View on GitHub
projects/angular/components/ui-grid/src/components/ui-grid-search/ui-grid-custom-search.directive.ts

Summary

Maintainability
A
50 mins
Test Coverage
A
100%
import {
    ContentChild,
    Directive,
    TemplateRef,
} from '@angular/core';

@Directive({
    selector: '[uiGridCustomSearch], ui-grid-custom-search',
})
export class UiGridCustomSearchDirective {
    @ContentChild(TemplateRef, {
        static: true,
    })
    html?: TemplateRef<any>;
}