@uex/web-extensions
Version:
## Installation
14 lines (13 loc) • 453 B
TypeScript
import { ElementRef, TemplateRef, AfterViewInit } from '@angular/core';
import { TabLabelDirective } from '../directives/label.directive';
export declare class TabComponent implements AfterViewInit {
private _elementRef;
templateLabel: TabLabelDirective;
content: TemplateRef<any>;
textLabel: string;
disabled: boolean;
cssClass: any;
constructor(_elementRef: ElementRef);
active: boolean;
ngAfterViewInit(): void;
}