UNPKG

@asi-ngtools/lib

Version:

This project is a little components library, simple to use, which will help you to simplify your project.

15 lines (14 loc) 472 B
import { TemplateRef } from '@angular/core'; import { AsiComponentTemplateTabHeaderDef } from '../../common/asi-component-template'; export declare class AsiTab { /** Give an id to the tab */ tabId: string; /** Label to display (is translated) */ label: string; /** Add a custom class to the tab */ tabClass: string; contentTemplate: TemplateRef<any>; headerDef: AsiComponentTemplateTabHeaderDef; active: boolean; index: Number; }