We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 029ee7d commit 54fe024Copy full SHA for 54fe024
apps/site/types/vulnerabilities.ts
@@ -1,4 +1,3 @@
1
-import type { SEVERITY_ORDER } from '#site/next.constants.mjs';
2
import type { NodeRelease } from '#site/types';
3
4
export type Severity = 'unknown' | 'low' | 'medium' | 'high' | 'critical';
@@ -30,7 +29,3 @@ export type EOLModalData = {
30
29
release: NodeRelease;
31
vulnerabilities: Array<Vulnerability>;
32
};
33
-
34
-export type KnownVulnerability = Vulnerability & {
35
- severity: (typeof SEVERITY_ORDER)[number];
36
-};
0 commit comments