source: trip-planner-front/node_modules/@angular/material/table/row.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.6 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 { CdkFooterRow, CdkFooterRowDef, CdkHeaderRow, CdkHeaderRowDef, CdkRow, CdkRowDef, CdkNoDataRow } from '@angular/cdk/table';
9/**
10 * Header row definition for the mat-table.
11 * Captures the header row's template and other header properties such as the columns to display.
12 */
13export declare class MatHeaderRowDef extends CdkHeaderRowDef {
14}
15/**
16 * Footer row definition for the mat-table.
17 * Captures the footer row's template and other footer properties such as the columns to display.
18 */
19export declare class MatFooterRowDef extends CdkFooterRowDef {
20}
21/**
22 * Data row definition for the mat-table.
23 * Captures the data row's template and other properties such as the columns to display and
24 * a when predicate that describes when this row should be used.
25 */
26export declare class MatRowDef<T> extends CdkRowDef<T> {
27}
28/** Header template container that contains the cell outlet. Adds the right class and role. */
29export declare class MatHeaderRow extends CdkHeaderRow {
30}
31/** Footer template container that contains the cell outlet. Adds the right class and role. */
32export declare class MatFooterRow extends CdkFooterRow {
33}
34/** Data row template container that contains the cell outlet. Adds the right class and role. */
35export declare class MatRow extends CdkRow {
36}
37/** Row that can be used to display a message when no data is shown in the table. */
38export declare class MatNoDataRow extends CdkNoDataRow {
39}
Note: See TracBrowser for help on using the repository browser.