xui
Version:
xUI Components for Angular
17 lines (16 loc) • 810 B
TypeScript
import { ChangeDetectorRef, OnInit } from '@angular/core';
import { TabGroupComponent } from './tab-group.component';
import { BooleanInput } from '@angular/cdk/coercion';
import * as i0 from "@angular/core";
export declare class TabComponent implements OnInit {
private tabGroup;
private cdr;
static ngAcceptInputType_disabled: BooleanInput;
title: string;
disabled: boolean;
get isActive(): boolean;
constructor(tabGroup: TabGroupComponent, cdr: ChangeDetectorRef);
ngOnInit(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<TabComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<TabComponent, "xui-tab", never, { "title": { "alias": "title"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, ["*"], false, never>;
}