/** * @license * Copyright 厦门乾元盛世科技有限公司 All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file. */ import { EventEmitter, AfterViewInit } from '@angular/core'; import { WeUITabBarItem } from './weui.tabbar.item'; export declare class WeUITabBar implements AfterViewInit { /** * 初始激活的子对象 */ activeIndex: number; /** * 设置基本样式 */ barCls: boolean; /** * 激活事件 */ activated: EventEmitter; private _activated; constructor(); ngAfterViewInit(): void; getAt(index: number): WeUITabBarItem; activate(item: any): void; activateAt(index: number): void; isActivated(item: WeUITabBarItem): boolean; }