UNPKG

dce-dev-wizard

Version:

Wizard for managing development apps at Harvard DCE.

22 lines (19 loc) 579 B
// Import other types import WizSeverity from './WizSeverity'; /** * Relevant information from Wiz CVE report included in the review CVEs screen. * @author Allison Zhang */ type WizReportItem = { wizURL: string, // WizURL cve: string, // Name severity: WizSeverity, // Severity remediation: string, // Remediation locationPath: string, // LocationPath package: string, // DetailedName version: string, // Version fixedVersion: string, // FixedVersion advisoryLink: string, // Link awsAccount: string, // SubscriptionName }; export default WizReportItem;