angular2-mdl
Version:
Angular 2 components, directives and styles based on material design lite https://getmdl.io.
19 lines (18 loc) • 670 B
TypeScript
import { ElementRef, Renderer, QueryList } from '@angular/core';
import { MdlLayoutTabPanelComponent } from './mdl-layout-tab-panel.component';
import { MdlLayoutComponent } from './mdl-layout.component';
export declare class MdlLayoutHeaderComponent {
private elementRef;
private renderer;
private mdlLayout;
mode: string;
el: HTMLElement;
isCompact: boolean;
isAnimating: boolean;
isSeamed: boolean;
isRipple: boolean;
tabs: QueryList<MdlLayoutTabPanelComponent>;
constructor(elementRef: ElementRef, renderer: Renderer, mdlLayout: MdlLayoutComponent);
protected onTransitionEnd(): void;
protected onClick(): void;
}