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 | */
|
---|
8 | import { 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 | */
|
---|
13 | export 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 | */
|
---|
19 | export 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 | */
|
---|
25 | export 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 | */
|
---|
31 | export 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. */
|
---|
44 | export declare class MatHeaderCell extends CdkHeaderCell {
|
---|
45 | }
|
---|
46 | /** Footer cell template container that adds the right classes and role. */
|
---|
47 | export declare class MatFooterCell extends CdkFooterCell {
|
---|
48 | }
|
---|
49 | /** Cell template container that adds the right classes and role. */
|
---|
50 | export declare class MatCell extends CdkCell {
|
---|
51 | }
|
---|