UNPKG

358 BTypeScriptView Raw
1import type webpack from 'webpack';
2import type { IssueOptions } from './issue-options';
3import type { IssuePredicate } from './issue-predicate';
4interface IssueConfig {
5 predicate: IssuePredicate;
6}
7declare function createIssueConfig(compiler: webpack.Compiler, options: IssueOptions | undefined): IssueConfig;
8export { IssueConfig, createIssueConfig };