@alauda/ui
Version:
Angular UI components by Alauda Frontend Team.
11 lines (10 loc) • 337 B
TypeScript
import { ValueOf } from '../internal/types';
export declare const InlineAlertType: {
readonly Primary: "primary";
readonly Success: "success";
readonly Warning: "warning";
readonly Danger: "danger";
readonly Error: "error";
readonly Info: "info";
};
export type InlineAlertType = ValueOf<typeof InlineAlertType>;