This commit is contained in:
2026-04-07 14:50:23 +09:00
commit b4e485502b
4778 changed files with 2017091 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
import { Options, TestOptions } from '../../../lib/types';
import { TestResult } from '../../../lib/snyk-test/legacy';
export declare function displayResult(res: TestResult, options: Options & TestOptions, foundProjectCount?: number): string;

View File

@@ -0,0 +1,9 @@
import { Options, OutputDataTypes, SupportedProjectTypes, TestOptions } from '../../types';
import { GroupedVuln, TestResult } from '../../snyk-test/legacy';
export declare function extractDataToSendFromResults(results: any, mappedResults: any, options: Options): OutputDataTypes;
export declare function createErrorMappedResultsForJsonOutput(results: any): any;
export declare function getDisplayedOutput(res: TestResult, options: Options & TestOptions, testedInfoText: string, localPackageTest: any, projectType: SupportedProjectTypes, meta: string, prefix: string, hasUnknownVersions: string, multiProjAdvice: string, dockerAdvice: string): string;
export declare function dockerUserCTA(options: any): "" | "\n\nFor more free scans that keep your images secure, sign up to Snyk at https://dockr.ly/3ePqVcp";
export declare function groupVulnerabilities(vulns: any): {
[vulnId: string]: GroupedVuln;
};