@crediblefinance/credible-ui
Version:
Credible's standard UI library
15 lines (14 loc) • 769 B
TypeScript
import { EventEmitter, OnInit } from '@angular/core';
import TabOption from './tab-option.interface';
import * as i0 from "@angular/core";
export declare class CfTabsComponent implements OnInit {
tabs: Array<TabOption>;
changed: EventEmitter<TabOption>;
currentTab: TabOption | string;
theme: string;
constructor();
ngOnInit(): void;
changeTab(tab: TabOption): void;
static ɵfac: i0.ɵɵFactoryDeclaration<CfTabsComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<CfTabsComponent, "cf-tabs", never, { "tabs": { "alias": "tabs"; "required": false; }; "currentTab": { "alias": "currentTab"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "changed": "changed"; }, never, never, false, never>;
}