@inaccess-fang/ui-components
Version:
The Inaccess UI Components Library for the Front-end projects
14 lines (13 loc) • 585 B
TypeScript
import { EventEmitter, OnDestroy, OnInit, ChangeDetectorRef, QueryList, AfterViewInit } from '@angular/core';
import { FangTabComponent } from './fang-tab.component';
export declare class FangMultiTabsComponent implements OnInit, AfterViewInit, OnDestroy {
private _changeDetectorRef;
tabs: QueryList<FangTabComponent>;
selectedTabChanged: EventEmitter<void>;
private _changesSubscription$;
constructor(_changeDetectorRef: ChangeDetectorRef);
ngOnInit(): void;
ngAfterViewInit(): void;
ngOnDestroy(): void;
selectTab(tab: FangTabComponent): void;
}