UiPath/angular-components

View on GitHub
projects/angular/components/ui-grid/src/body/ui-grid-row-action.directive.ts

Summary

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

/**
 * The row action definition directive.
 *
 */
@Directive({
    selector: '[uiGridRowAction], ui-grid-row-action',
})
export class UiGridRowActionDirective {
    /**
     * @ignore
     */
    @ContentChild(TemplateRef, {
        static: true,
    })
    html?: TemplateRef<any>;
}