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.4 KB
|
Rev | Line | |
---|
[6a3a178] | 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 { Platform } from '@angular/cdk/platform';
|
---|
| 9 | import { AfterViewInit, ElementRef, QueryList } from '@angular/core';
|
---|
| 10 | import { CanColor } from '@angular/material/core';
|
---|
| 11 | /** @docs-private */
|
---|
| 12 | declare const _MatToolbarBase: import("@angular/material/core/common-behaviors/constructor").Constructor<CanColor> & import("@angular/material/core/common-behaviors/constructor").AbstractConstructor<CanColor> & {
|
---|
| 13 | new (_elementRef: ElementRef): {
|
---|
| 14 | _elementRef: ElementRef;
|
---|
| 15 | };
|
---|
| 16 | };
|
---|
| 17 | export declare class MatToolbarRow {
|
---|
| 18 | }
|
---|
| 19 | export declare class MatToolbar extends _MatToolbarBase implements CanColor, AfterViewInit {
|
---|
| 20 | private _platform;
|
---|
| 21 | private _document;
|
---|
| 22 | /** Reference to all toolbar row elements that have been projected. */
|
---|
| 23 | _toolbarRows: QueryList<MatToolbarRow>;
|
---|
| 24 | constructor(elementRef: ElementRef, _platform: Platform, document?: any);
|
---|
| 25 | ngAfterViewInit(): void;
|
---|
| 26 | /**
|
---|
| 27 | * Throws an exception when developers are attempting to combine the different toolbar row modes.
|
---|
| 28 | */
|
---|
| 29 | private _checkToolbarMixedModes;
|
---|
| 30 | }
|
---|
| 31 | /**
|
---|
| 32 | * Throws an exception when attempting to combine the different toolbar row modes.
|
---|
| 33 | * @docs-private
|
---|
| 34 | */
|
---|
| 35 | export declare function throwToolbarMixedModesError(): void;
|
---|
| 36 | export {};
|
---|
Note:
See
TracBrowser
for help on using the repository browser.