UNPKG

382 BTypeScriptView Raw
1import type { PnpmProjectParseOptions } from '../types';
2import type { PackageJsonBase } from '../types';
3import { PnpmLockfileParser } from './lockfile-parser/lockfile-parser';
4export declare const buildDepGraphPnpm: (lockFileParser: PnpmLockfileParser, pkgJson: PackageJsonBase, options: PnpmProjectParseOptions, importer?: string) => Promise<import("@snyk/dep-graph").DepGraph>;