You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

9 lines
325 B

import type { FormatterPathType } from '../formatter';
import type { Issue } from './issue';
declare class IssueRspackError extends Error {
readonly issue: Issue;
readonly hideStack = true;
file?: string;
constructor(message: string, pathType: FormatterPathType, issue: Issue);
}
export { IssueRspackError };