bruno-ui
Version:
Bruno UI Kit
19 lines (18 loc) • 603 B
TypeScript
import { EventEmitter, ComponentWillLoad, ComponentDidLoad } from "../../stencil.core";
import { TabType } from "../../objects/types";
export declare class TabComponent implements ComponentWillLoad, ComponentDidLoad {
_element: HTMLElement;
tabLoaded: EventEmitter<TabType>;
tabChanged: EventEmitter<TabType>;
name: string;
active: boolean;
_active: boolean;
_identifier: string;
ActiveChangeHandler(value: boolean): void;
componentWillLoad(): void;
componentDidLoad(): void;
render(): any;
private TabChanged;
private GetTab;
private GetIndex;
}