ionic-angular
Version:
A powerful framework for building mobile and progressive web apps with JavaScript and Angular
14 lines (13 loc) • 544 B
TypeScript
import { ElementRef, Renderer } from '@angular/core';
import { Config } from '../../config/config';
import { Ion } from '../ion';
/**
* @name Badge
* @module ionic
* @description
* Badges are simple components in Ionic containing numbers or text. You can display a badge to indicate that there is new information associated with the item it is on.
* @see {@link /docs/components/#badges Badges Component Docs}
*/
export declare class Badge extends Ion {
constructor(config: Config, elementRef: ElementRef, renderer: Renderer);
}