Files
component-detection-depende…/dist/componentDetection.d.ts

13 lines
525 B
TypeScript
Raw Normal View History

2023-01-22 07:16:21 +00:00
import { Manifest } from '@github/dependency-submission-toolkit';
export default class ComponentDetection {
protected static componentDetectionPath: string;
protected static outputPath: string;
static scanAndGetManifests(path: string): Promise<Manifest[] | undefined>;
private static downloadLatestRelease;
private static runComponentDetection;
private static getManifestsFromResults;
private static getDependencyScope;
private static makePackageUrl;
private static getLatestReleaseURL;
}