ngx-formly-tabs
Version:
ngx-formly-tabs is an Angular module that adds Components that enable flexible tab use for @ngx-formly.
14 lines (13 loc) • 485 B
TypeScript
import { OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { TabsetService } from '../tabset/tabset.service';
export declare class TabComponent implements OnChanges, OnDestroy, OnInit {
tabsetService: TabsetService;
active: boolean;
disabled: boolean;
hidden: boolean;
title: string;
constructor(tabsetService: TabsetService);
ngOnChanges(changes: SimpleChanges): void;
ngOnInit(): void;
ngOnDestroy(): void;
}