projects/angular/components/ui-grid/src/body/ui-grid-expanded-row.directive.ts
import {
ContentChild,
Directive,
TemplateRef,
} from '@angular/core';
/**
* Expanded row definition directive.
*
* @export
*/
@Directive({
selector: '[uiGridExpandedRow], ui-grid-expanded-row',
})
export class UiGridExpandedRowDirective {
/**
* @internal
* @ignore
*/
@ContentChild(TemplateRef, {
static: true,
})
html?: TemplateRef<any>;
}