source: trip-planner-front/node_modules/@angular/material/table/cell.d.ts@ 59329aa

Last change on this file since 59329aa was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.8 KB
Line 
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8import { CdkCell, CdkCellDef, CdkColumnDef, CdkFooterCell, CdkFooterCellDef, CdkHeaderCell, CdkHeaderCellDef } from '@angular/cdk/table';
9/**
10 * Cell definition for the mat-table.
11 * Captures the template of a column's data row cell as well as cell-specific properties.
12 */
13export declare class MatCellDef extends CdkCellDef {
14}
15/**
16 * Header cell definition for the mat-table.
17 * Captures the template of a column's header cell and as well as cell-specific properties.
18 */
19export declare class MatHeaderCellDef extends CdkHeaderCellDef {
20}
21/**
22 * Footer cell definition for the mat-table.
23 * Captures the template of a column's footer cell and as well as cell-specific properties.
24 */
25export declare class MatFooterCellDef extends CdkFooterCellDef {
26}
27/**
28 * Column definition for the mat-table.
29 * Defines a set of cells available for a table column.
30 */
31export declare class MatColumnDef extends CdkColumnDef {
32 /** Unique name for this column. */
33 get name(): string;
34 set name(name: string);
35 /**
36 * Add "mat-column-" prefix in addition to "cdk-column-" prefix.
37 * In the future, this will only add "mat-column-" and columnCssClassName
38 * will change from type string[] to string.
39 * @docs-private
40 */
41 protected _updateColumnCssClassName(): void;
42}
43/** Header cell template container that adds the right classes and role. */
44export declare class MatHeaderCell extends CdkHeaderCell {
45}
46/** Footer cell template container that adds the right classes and role. */
47export declare class MatFooterCell extends CdkFooterCell {
48}
49/** Cell template container that adds the right classes and role. */
50export declare class MatCell extends CdkCell {
51}
Note: See TracBrowser for help on using the repository browser.