issue-webpack-error.d.ts 354 B

123456789
  1. import webpack from 'webpack';
  2. import type { FormatterPathType } from '../formatter';
  3. import type { Issue } from './issue';
  4. declare class IssueWebpackError extends webpack.WebpackError {
  5. readonly issue: Issue;
  6. readonly hideStack = true;
  7. constructor(message: string, pathType: FormatterPathType, issue: Issue);
  8. }
  9. export { IssueWebpackError };