UNPKG

snyk-nodejs-lockfile-parser

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