convert-scanned-projects-to-custom.d.ts 484 B

12345
  1. import * as cliInterface from '@snyk/cli-interface';
  2. import { ScannedProjectCustom } from './get-multi-plugin-result';
  3. import { SupportedPackageManagers } from '../package-managers';
  4. import { PluginMetadata } from '@snyk/cli-interface/legacy/plugin';
  5. export declare function convertScannedProjectsToCustom(scannedProjects: cliInterface.legacyCommon.ScannedProject[], pluginMeta: PluginMetadata, packageManager?: SupportedPackageManagers, targetFile?: string): ScannedProjectCustom[];