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

14 lines
577 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;
2023-01-22 19:46:41 +00:00
private static getComponentDetectionParameters;
2023-01-22 07:16:21 +00:00
private static getManifestsFromResults;
private static getDependencyScope;
private static makePackageUrl;
private static getLatestReleaseURL;
}