/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { ElementRef } from '@angular/core'; import { CdkCell, CdkCellDef, CdkColumnDef, CdkFooterCell, CdkFooterCellDef, CdkHeaderCell, CdkHeaderCellDef } from '@angular/cdk/table'; /** * Cell definition for the hc-table. * Captures the template of a column's data row cell as well as cell-specific properties. */ export declare class HcCellDef extends CdkCellDef { } /** * Header cell definition for the hc-table. * Captures the template of a column's header cell and as well as cell-specific properties. */ export declare class HcHeaderCellDef extends CdkHeaderCellDef { } /** * Footer cell definition for the hc-table. * Captures the template of a column's footer cell and as well as cell-specific properties. */ export declare class HcFooterCellDef extends CdkFooterCellDef { } /** * Column definition for the hc-table. * Defines a set of cells available for a table column. */ export declare class HcColumnDef extends CdkColumnDef { private _justify; /** Unique name for this column. */ name: string; /** Sets the text alignment for this column: `left` (default), `center` or `right` */ justify: string; /** Whether this column should be sticky positioned at the start of the row */ sticky: boolean; /** Whether this column should be sticky positioned on the end of the row */ stickyEnd: boolean; } /** Header cell template container that adds the right classes and role. */ export declare class HcHeaderCell extends CdkHeaderCell { constructor(columnDef: HcColumnDef, elementRef: ElementRef); } /** Footer cell template container that adds the right classes and role. */ export declare class HcFooterCell extends CdkFooterCell { constructor(columnDef: HcColumnDef, elementRef: ElementRef); } /** Cell template container that adds the right classes and role. */ export declare class HcCell extends CdkCell { constructor(columnDef: HcColumnDef, elementRef: ElementRef); }