mirror of
https://github.com/fleetdm/fleet
synced 2026-05-16 05:28:38 +00:00
* Refactored Software inventory table to use TableContainer * Add search, reordering, IconTooltipCell
11 lines
209 B
TypeScript
11 lines
209 B
TypeScript
import PropTypes from "prop-types";
|
|
|
|
export default PropTypes.shape({
|
|
cve: PropTypes.string,
|
|
details_link: PropTypes.string,
|
|
});
|
|
|
|
export interface IVulnerability {
|
|
cve: string;
|
|
details_link: string;
|
|
}
|