Type Alias: EventSeverity
type EventSeverity =
| "critical"
| "high"
| "low"
| "medium";
Defined in: electron/events/eventTypes.ts:139
Severity level of an event for prioritization and alerting.
Remarks
Used to prioritize event handling and alerting in middleware and UI.
Example
const severity: EventSeverity = "critical";