UNPKG

544 BTypeScriptView Raw
1import { ElementRef, Renderer } from '@angular/core';
2import { Config } from '../../config/config';
3import { Ion } from '../ion';
4/**
5 * @name Badge
6 * @module ionic
7 * @description
8 * 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.
9 * @see {@link /docs/components/#badges Badges Component Docs}
10 */
11export declare class Badge extends Ion {
12 constructor(config: Config, elementRef: ElementRef, renderer: Renderer);
13}