dce-dev-wizard
Version:
Wizard for managing development apps at Harvard DCE.
14 lines (13 loc) • 435 B
TypeScript
/**
* Scrapes the GitHub advisory page for a CVE and returns the title and
* description of the CVE.
* @author Allison Zhang
* @author Gabe Abrams
* @param githubLink The URL of the GitHub advisory page for the CVE
* @returns A promise that contains both the title and description of the CVE
*/
declare const scrapeCVE: (githubLink: string) => Promise<{
title: string;
description: string;
}>;
export default scrapeCVE;