angular-tabs-component
Version:
A full featured tab component for Angular (2 and above, including 4).
13 lines (12 loc) • 418 B
TypeScript
import { EventEmitter } from "@angular/core";
import { TabComponent } from "../../components";
export declare class TabsContainer {
disabled: boolean;
currentTabChange: EventEmitter<TabComponent>;
ifTabSelected: boolean;
tabs: TabComponent[];
addTab(tab: TabComponent): void;
selectTab(tab: TabComponent): void;
isDisabled(): "block" | "none";
ngAfterContentInit(): void;
}