snyk-docker-plugin
Version:
Snyk CLI docker plugin
10 lines (9 loc) • 596 B
TypeScript
import { StaticAnalysis } from "./analyzer/types";
import { DockerFileAnalysis } from "./dockerfile/types";
import { OCIDistributionMetadata } from "./extractor/oci-distribution-metadata";
import * as types from "./types";
export { buildResponse };
declare function buildResponse(depsAnalysis: StaticAnalysis & {
depTree: types.DepTree;
packageFormat: string;
}, dockerfileAnalysis: DockerFileAnalysis | undefined, excludeBaseImageVulns: boolean, names?: string[], ociDistributionMetadata?: OCIDistributionMetadata, options?: Partial<types.PluginOptions>): Promise<types.PluginResponse>;