source: trip-planner-front/node_modules/@angular/material/table/table.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: 802 bytes
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 { CdkTable } from '@angular/cdk/table';
9/**
10 * Enables the recycle view repeater strategy, which reduces rendering latency. Not compatible with
11 * tables that animate rows.
12 */
13export declare class MatRecycleRows {
14}
15/**
16 * Wrapper for the CdkTable with Material design styles.
17 */
18export declare class MatTable<T> extends CdkTable<T> {
19 /** Overrides the sticky CSS class set by the `CdkTable`. */
20 protected stickyCssClass: string;
21 /** Overrides the need to add position: sticky on every sticky cell element in `CdkTable`. */
22 protected needsPositionStickyOnElement: boolean;
23}
Note: See TracBrowser for help on using the repository browser.