UNPKG

521 BTypeScriptView Raw
1import { LockfileType } from '../parsers';
2export declare const LOCK_FILE_NAME: {
3 npm: string;
4 npm7: string;
5 yarn: string;
6 yarn2: string;
7 pnpm: string;
8};
9export declare const INSTALL_COMMAND: {
10 npm: string;
11 npm7: string;
12 yarn: string;
13 yarn2: string;
14 pnpm: string;
15};
16export declare class OutOfSyncError extends Error {
17 code: number;
18 name: string;
19 dependencyName: string;
20 lockFileType: string;
21 constructor(dependencyName: string, lockFileType: LockfileType);
22}