UNPKG

@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>

22 lines (21 loc) 523 B
import { EventEmitter, TemplateRef, ChangeDetectorRef } from '@angular/core'; export declare class TabItem { private cdRef; /** * Sets the tab title. */ title: string | TemplateRef<any>; /** * Set to `true` to activate the tab (display it). */ active: boolean; /** * Callback when the tab is selected. */ selected: EventEmitter<string | TemplateRef<any>>; constructor(cdRef: ChangeDetectorRef); /** * Activates tab item */ activate(): void; }