@opra/common
Version:
Opra common package
14 lines (13 loc) • 364 B
TypeScript
export declare namespace IssueSeverity {
enum Enum {
'fatal' = "fatal",
'error' = "error",
'warning' = "warning",
'info' = "info"
}
const name = "IssueSeverity";
const description = "Severity of the issue";
const Keys: string[];
type Type = keyof typeof Enum;
const descriptions: Record<Enum, string>;
}