import PropTypes from "prop-types"; export default PropTypes.shape({ cve: PropTypes.string, details_link: PropTypes.string, }); export interface IVulnerability { cve: string; details_link: string; }