@aotearoan/neon
Version:
Neon is a lightweight design library of Vue 3 components with minimal dependencies.
16 lines (15 loc) • 664 B
TypeScript
/**
* Alert levels are the severity levels to be used with <a href="/feedback/alert#examples">NeonAlert & NeonToast</a>
* components to inform the user of the severity of a message.
* @enum
*/
export declare enum NeonAlertLevel {
/** Information level, use for standard informational messages. */
Info = "info",
/** Success level, use for indicating successful actions. */
Success = "success",
/** Warning level, use for indicating a problem that the user <strong>can</strong> recover from. */
Warn = "warn",
/** Error level, use for indicating a problem that the user <strong>cannot</strong> recover from. */
Error = "error"
}