UNPKG

@alauda/ui

Version:

Angular UI components by Alauda Frontend Team.

22 lines (21 loc) 602 B
import { ValueOf } from '../internal/types'; export interface Status { type?: StatusType; class?: string; scale: number; [key: string]: unknown; } export declare const StatusType: { readonly Primary: "primary"; readonly Success: "success"; readonly Warning: "warning"; readonly Error: "error"; readonly Info: "info"; readonly Pending: "pending"; }; export type StatusType = ValueOf<typeof StatusType>; export declare const StatusBarSize: { readonly Medium: "medium"; readonly Small: "small"; }; export type StatusBarSize = ValueOf<typeof StatusBarSize>;