UNPKG

ionic-framework

Version:

The ionic-framework package comes with both Javascript and Sass frontend dependencies, located in the root of the package, and a Node API, located in `tooling/`.

21 lines (20 loc) 515 B
import { ElementRef, EventEmitter } from 'angular2/core'; import { Tab } from './tab'; import { Ion } from '../ion'; import { Config } from '../../config/config'; /** * @private */ export declare class TabButton extends Ion { private disHover; private hasTitle; private hasIcon; private hasTitleOnly; private hasIconOnly; private hasBadge; tab: Tab; select: EventEmitter<Tab>; constructor(config: Config, elementRef: ElementRef); ngOnInit(): void; private onClick(); }