cvss4
Version:
The **Common Vulnerability Scoring System (CVSS)** is a [scoring framework](https://www.first.org/cvss/) that provides numerical scores to assess the severity of software vulnerabilities. This TypeScript-based library offers support for CVSS versions **3.
9 lines (8 loc) • 361 B
TypeScript
import { Metric, MetricValue } from './models';
export declare const humanizeBaseMetric: (metric: Metric) => string;
export declare const humanizeBaseMetricValue: (value: MetricValue, metric: Metric) => string;
/**
* Stringify a score into a qualitative severity rating string
* @param score
*/
export declare const humanizeScore: (score: number) => string;