UNPKG

fork-ts-checker-webpack-plugin

Version:
10 lines (9 loc) 359 B
import * as webpack from 'webpack'; import type { FormatterPathType } from '../formatter'; import type { Issue } from './issue'; declare class IssueWebpackError extends webpack.WebpackError { readonly issue: Issue; readonly hideStack = true; constructor(message: string, pathType: FormatterPathType, issue: Issue); } export { IssueWebpackError };