source: trip-planner-front/node_modules/@angular/material/grid-list/grid-tile.d.ts.__ivy_ngcc_bak@ 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.9 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 { ElementRef, QueryList, AfterContentInit } from '@angular/core';
9import { MatLine } from '@angular/material/core';
10import { NumberInput } from '@angular/cdk/coercion';
11import { MatGridListBase } from './grid-list-base';
12export declare class MatGridTile {
13 private _element;
14 _gridList?: MatGridListBase | undefined;
15 _rowspan: number;
16 _colspan: number;
17 constructor(_element: ElementRef<HTMLElement>, _gridList?: MatGridListBase | undefined);
18 /** Amount of rows that the grid tile takes up. */
19 get rowspan(): number;
20 set rowspan(value: number);
21 /** Amount of columns that the grid tile takes up. */
22 get colspan(): number;
23 set colspan(value: number);
24 /**
25 * Sets the style of the grid-tile element. Needs to be set manually to avoid
26 * "Changed after checked" errors that would occur with HostBinding.
27 */
28 _setStyle(property: string, value: any): void;
29 static ngAcceptInputType_rowspan: NumberInput;
30 static ngAcceptInputType_colspan: NumberInput;
31}
32export declare class MatGridTileText implements AfterContentInit {
33 private _element;
34 _lines: QueryList<MatLine>;
35 constructor(_element: ElementRef<HTMLElement>);
36 ngAfterContentInit(): void;
37}
38/**
39 * Directive whose purpose is to add the mat- CSS styling to this selector.
40 * @docs-private
41 */
42export declare class MatGridAvatarCssMatStyler {
43}
44/**
45 * Directive whose purpose is to add the mat- CSS styling to this selector.
46 * @docs-private
47 */
48export declare class MatGridTileHeaderCssMatStyler {
49}
50/**
51 * Directive whose purpose is to add the mat- CSS styling to this selector.
52 * @docs-private
53 */
54export declare class MatGridTileFooterCssMatStyler {
55}
Note: See TracBrowser for help on using the repository browser.