1 | import { PnpmLockfileParser } from './lockfile-parser/lockfile-parser';
|
2 | import { NormalisedPnpmPkgs, PnpmNode } from './types';
|
3 | export declare const getPnpmChildNode: (name: string, depInfo: {
|
4 | version: string;
|
5 | isDev: boolean;
|
6 | }, pkgs: NormalisedPnpmPkgs, strictOutOfSync: boolean, includeOptionalDeps: boolean, includeDevDeps: boolean, lockfileParser: PnpmLockfileParser) => PnpmNode;
|
7 | export declare function getFileContents(root: string, fileName: string): {
|
8 | content: string;
|
9 | fileName: string;
|
10 | };
|