source: trip-planner-front/node_modules/@angular/material/toolbar/toolbar.d.ts@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.4 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 { Platform } from '@angular/cdk/platform';
9import { AfterViewInit, ElementRef, QueryList } from '@angular/core';
10import { CanColor } from '@angular/material/core';
11/** @docs-private */
12declare 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};
17export declare class MatToolbarRow {
18}
19export 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 */
35export declare function throwToolbarMixedModesError(): void;
36export {};
Note: See TracBrowser for help on using the repository browser.