UNPKG

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