index.d.ts 723 B

123456789
  1. import { ScannedProject } from '@snyk/cli-interface/legacy/common';
  2. import { MonitorMeta } from '../types';
  3. export declare const IMAGE_SAVE_PATH_OPT = "imageSavePath";
  4. export declare const IMAGE_SAVE_PATH_ENV_VAR = "SNYK_IMAGE_SAVE_PATH";
  5. export declare function isContainer(scannedProject: ScannedProject): boolean;
  6. export declare function getContainerTargetFile(scannedProject: ScannedProject): string | undefined;
  7. export declare function getContainerName(scannedProject: ScannedProject, meta: MonitorMeta): string | undefined;
  8. export declare function getContainerProjectName(scannedProject: ScannedProject, meta: MonitorMeta): string | undefined;
  9. export declare function getContainerImageSavePath(): string | undefined;