Skip to content

Commit 880ac00

Browse files
fix: update cve stats model to use the correct data type (#14)
1 parent 4c4ea1c commit 880ac00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types/eol-scan.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { CdxBom } from './index.js';
22

33
export interface CveStats {
44
cveId: string;
5-
cvssScore: number;
5+
cvssScore: string | null;
66
publishedAt: string;
77
}
88

0 commit comments

Comments
 (0)