mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
ad3ed4210f
* Refactored Software inventory table to use TableContainer * Add search, reordering, IconTooltipCell
12 lines
209 B
TypeScript
12 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;
|
|
}
|