UNPKG

theme-lib

Version:

This is a simple example Angular Library published to npm.

24 lines (23 loc) 966 B
import { NbLayoutDirectionService } from '../../services/direction.service'; export declare class NbBadgeComponent { private layoutDirectionService; static readonly TOP_LEFT = "top left"; static readonly TOP_RIGHT = "top right"; static readonly BOTTOM_LEFT = "bottom left"; static readonly BOTTOM_RIGHT = "bottom right"; static readonly TOP_START = "top start"; static readonly TOP_END = "top end"; static readonly BOTTOM_START = "bottom start"; static readonly BOTTOM_END = "bottom end"; static readonly STATUS_PRIMARY = "primary"; static readonly STATUS_INFO = "info"; static readonly STATUS_SUCCESS = "success"; static readonly STATUS_WARNING = "warning"; static readonly STATUS_DANGER = "danger"; colorClass: string; text: string; position: string; status: any; readonly positionClass: string; constructor(layoutDirectionService: NbLayoutDirectionService); }