snyk-docker-plugin
Version:
Snyk CLI docker plugin
9 lines (8 loc) • 407 B
TypeScript
import { StaticAnalysis } from "./analyzer/types";
import { DockerFileAnalysis } from "./dockerfile/types";
import * as types from "./types";
export { buildResponse };
declare function buildResponse(depsAnalysis: StaticAnalysis & {
depTree: types.DepTree;
packageManager: string;
}, dockerfileAnalysis: DockerFileAnalysis | undefined, excludeBaseImageVulns: boolean): Promise<types.PluginResponse>;