ng-zorro-antd-mobile
Version:
An enterprise-class mobile UI components based on Ant Design and Angular
22 lines (21 loc) • 718 B
TypeScript
import { AfterContentInit, QueryList } from '@angular/core';
import { TabPane } from '../tabs/tab-pane.component';
import { TabBarTab } from './tab-bar-tab.component';
export declare type TabBarPositionType = 'top' | 'bottom';
export declare class TabBar implements AfterContentInit {
prefixCls: string;
private _tintColor;
private _unselectedTintColor;
tabPanes: QueryList<TabPane>;
tabBarTabs: QueryList<TabBarTab>;
hidden: boolean;
activeTab: number;
barTintColor: string;
tabBarPosition: TabBarPositionType;
tintColor: string;
unselectedTintColor: string;
tabBar: boolean;
constructor();
selectTabPane(index: number): void;
ngAfterContentInit(): void;
}