1 | import { PnpmProjectParseOptions } from '../types';
|
2 | import { DepGraph } from '@snyk/dep-graph';
|
3 | import { NodeLockfileVersion } from '../../utils';
|
4 | export declare const parsePnpmProject: (pkgJsonContent: string, pnpmLockContent: string | undefined, options: PnpmProjectParseOptions, lockfileVersion?: NodeLockfileVersion) => Promise<DepGraph>;
|