@anglr/grid
Version:
Angular module displaying grid
17 lines • 986 B
TypeScript
import { TemplateRef } from '@angular/core';
import { CellTemplateContext, TableGridColumn } from '../../interfaces';
import * as i0 from "@angular/core";
/**
* Directive that is used for obtaining template for table grid header cell
*/
export declare class TableGridHeaderCellTemplateDirective<TColumnMetadata = any> {
template: TemplateRef<CellTemplateContext<TColumnMetadata>>;
constructor(template: TemplateRef<CellTemplateContext<TColumnMetadata>>);
/**
* Allows typechecking for template
*/
static ngTemplateContextGuard(_dir: TableGridHeaderCellTemplateDirective, _ctx: unknown): _ctx is CellTemplateContext<TableGridColumn<any>>;
static ɵfac: i0.ɵɵFactoryDeclaration<TableGridHeaderCellTemplateDirective<any>, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<TableGridHeaderCellTemplateDirective<any>, "[headerCellTemplate]", never, {}, {}, never, never, true, never>;
}
//# sourceMappingURL=tableGridHeaderCellTemplate.directive.d.ts.map