dce-dev-wizard
Version:
Wizard for managing development apps at Harvard DCE.
19 lines (18 loc) • 451 B
TypeScript
import WizSeverity from './WizSeverity';
/**
* Relevant information from Wiz CVE report included in the review CVEs screen.
* @author Allison Zhang
*/
declare type WizReportItem = {
wizURL: string;
cve: string;
severity: WizSeverity;
remediation: string;
locationPath: string;
package: string;
version: string;
fixedVersion: string;
advisoryLink: string;
awsAccount: string;
};
export default WizReportItem;