9 lines
366 B
TypeScript
9 lines
366 B
TypeScript
import { DepTree } from '../../types';
|
|
import { ContainerTarget } from '../types';
|
|
import { ScannedProject } from '@snyk/cli-interface/legacy/common';
|
|
export declare function getInfo({ isFromContainer, scannedProject, packageInfo, }: {
|
|
isFromContainer: boolean;
|
|
scannedProject: ScannedProject;
|
|
packageInfo?: DepTree;
|
|
}): Promise<ContainerTarget | null>;
|