{"version":3,"file":"grid-tile.d.ts","sources":["grid-tile.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA","sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { ElementRef, QueryList, AfterContentInit } from '@angular/core';\nimport { MatLine } from '@angular/material/core';\nimport { NumberInput } from '@angular/cdk/coercion';\nimport { MatGridListBase } from './grid-list-base';\nexport declare class MatGridTile {\n private _element;\n _gridList?: MatGridListBase | undefined;\n _rowspan: number;\n _colspan: number;\n constructor(_element: ElementRef, _gridList?: MatGridListBase | undefined);\n /** Amount of rows that the grid tile takes up. */\n get rowspan(): number;\n set rowspan(value: number);\n /** Amount of columns that the grid tile takes up. */\n get colspan(): number;\n set colspan(value: number);\n /**\n * Sets the style of the grid-tile element. Needs to be set manually to avoid\n * \"Changed after checked\" errors that would occur with HostBinding.\n */\n _setStyle(property: string, value: any): void;\n static ngAcceptInputType_rowspan: NumberInput;\n static ngAcceptInputType_colspan: NumberInput;\n}\nexport declare class MatGridTileText implements AfterContentInit {\n private _element;\n _lines: QueryList;\n constructor(_element: ElementRef);\n ngAfterContentInit(): void;\n}\n/**\n * Directive whose purpose is to add the mat- CSS styling to this selector.\n * @docs-private\n */\nexport declare class MatGridAvatarCssMatStyler {\n}\n/**\n * Directive whose purpose is to add the mat- CSS styling to this selector.\n * @docs-private\n */\nexport declare class MatGridTileHeaderCssMatStyler {\n}\n/**\n * Directive whose purpose is to add the mat- CSS styling to this selector.\n * @docs-private\n */\nexport declare class MatGridTileFooterCssMatStyler {\n}\n"]}