@pnpm/core
Version:
Fast, disk space efficient installation engine
10 lines (9 loc) • 390 B
TypeScript
import { BreakingChangeError } from './BreakingChangeError';
import { type ErrorRelatedSources } from './ErrorRelatedSources';
export type ModulesBreakingChangeErrorOptions = ErrorRelatedSources & {
modulesPath: string;
};
export declare class ModulesBreakingChangeError extends BreakingChangeError {
modulesPath: string;
constructor(opts: ModulesBreakingChangeErrorOptions);
}