mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
15 lines
310 B
TypeScript
15 lines
310 B
TypeScript
import PropTypes from "prop-types";
|
|
|
|
export default PropTypes.shape({
|
|
cve: PropTypes.string,
|
|
details_link: PropTypes.string,
|
|
});
|
|
|
|
export interface IVulnerability {
|
|
cisa_known_exploit: string | null;
|
|
cve: string;
|
|
cvss_score: string | null;
|
|
details_link: string;
|
|
epss_probability: number | null;
|
|
}
|