snyk-docker-plugin
Version:
Snyk CLI docker plugin
10 lines (9 loc) • 313 B
TypeScript
import * as depGraph from "@snyk/dep-graph";
import { Elf } from "./types";
/**
* Parse `.strtab` to get Go packages
* Parse `.go.buildinfo` to get addresses
* to go modules and their versions
* @param goBinary
*/
export declare function parseGoBinary(goBinary: Elf): Promise<depGraph.DepGraph | undefined>;