@pnpm/core
Version:
Fast, disk space efficient installation engine
13 lines (12 loc) • 415 B
TypeScript
import { PnpmError } from '@pnpm/error';
import { type ErrorRelatedSources } from './ErrorRelatedSources';
export type BreakingChangeErrorOptions = ErrorRelatedSources & {
code: string;
message: string;
};
export declare class BreakingChangeError extends PnpmError {
relatedIssue?: number;
relatedPR?: number;
additionalInformation?: string;
constructor(opts: BreakingChangeErrorOptions);
}