UNPKG

@akveo/nga-theme

Version:
26 lines (25 loc) 814 B
/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ import { EventEmitter, QueryList, AfterContentInit } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; export declare class NgaTabComponent { tabTitle: string; route: string; activeValue: boolean; active: boolean; init: boolean; } export declare class NgaTabsetComponent implements AfterContentInit { private route; tabs: QueryList<NgaTabComponent>; private fullWidthValue; fullWidth: boolean; routes: boolean; changeTab: EventEmitter<any>; constructor(route: ActivatedRoute); ngAfterContentInit(): void; selectTab(selectedTab: NgaTabComponent): void; }