projects/i-components/src/lib/components/tab-item/tab-index.service.ts
Tab Index Service used to manage the current tab id.
Properties |
currentTabId |
Type : number
|
Current tab index |
import { Injectable } from '@angular/core';
/**
* Tab Index Service used to manage the current tab id.
*
* @export
* @class TabIndexService
*/
@Injectable()
export class TabIndexService {
/**
* Current tab index
*
* @type {number}
* @memberof TabIndexService
*/
currentTabId: number;
}