@angular/material
Version:
Angular Material
22 lines (21 loc) • 772 B
TypeScript
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { ElementRef, Renderer2 } from '@angular/core';
import { CanColor } from '@angular/material/core';
export declare class MdToolbarRow {
}
/** @docs-private */
export declare class MdToolbarBase {
_renderer: Renderer2;
_elementRef: ElementRef;
constructor(_renderer: Renderer2, _elementRef: ElementRef);
}
export declare const _MdToolbarMixinBase: (new (...args: any[]) => CanColor) & typeof MdToolbarBase;
export declare class MdToolbar extends _MdToolbarMixinBase implements CanColor {
constructor(renderer: Renderer2, elementRef: ElementRef);
}