API/api.medcify.app/node_modules/snyk/dist/lib/project-metadata/index.d.ts

11 lines
420 B
TypeScript
Raw Normal View History

2022-09-26 06:11:44 +00:00
import { GitTarget, ContainerTarget } from './types';
import { DepTree } from '../types';
import { ScannedProject } from '@snyk/cli-interface/legacy/common';
interface Options {
'remote-repo-url'?: string;
docker?: boolean;
isDocker?: boolean;
}
export declare function getInfo(scannedProject: ScannedProject, options: Options, packageInfo?: DepTree): Promise<GitTarget | ContainerTarget | null>;
export {};