snyk-docker-plugin
Version:
Snyk CLI docker plugin
10 lines (9 loc) • 380 B
TypeScript
/// <reference types="node" />
import { GoPackage } from "./types";
/**
* Get all lines in `.strtab` that ends with `..inittask`
* `..inittask` is internal go function to init the package
* Also lines need to be decoded, cos it might contain HTML encoded symbols
* @param strTabSectionBuffer
*/
export declare function parserStrTab(strTabSectionBuffer: Buffer): GoPackage[];