@kushki/ng-suka
Version:
<p align="center"> <h1 align="center">Suka Components Angular</h1> <p align="center"> An Angular implementation of the Suka Design System </p> </p>
19 lines (18 loc) • 523 B
TypeScript
import { QueryList, AfterContentInit } from '@angular/core';
import { TabItem } from './tab-item.component';
export declare class Tabs implements AfterContentInit {
/**
* Set to `true` to fit tabs to container.
*/
fitted: boolean;
/**
* List of tabs associated to the main wrapper.
*/
tabs: QueryList<TabItem>;
ngAfterContentInit(): void;
/**
* Selects a particular tab and activates it.
*/
selectTab(tabItem: TabItem): void;
isTemplate(value: any): boolean;
}