ng-semantic
Version:
Angular2 building blocks based on Semantic UI
16 lines (15 loc) • 485 B
TypeScript
import { QueryList, AfterViewInit, ElementRef } from "@angular/core";
export declare class SemanticTabComponent implements AfterViewInit {
tab: number;
title: string;
active: boolean;
tabEl: ElementRef;
ngAfterViewInit(): void;
}
export declare class SemanticTabsComponent implements AfterViewInit {
elementRef: ElementRef;
tabs: QueryList<SemanticTabComponent>;
menu: ElementRef;
constructor(elementRef: ElementRef);
ngAfterViewInit(): void;
}