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