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.
 
 
 
 
 

8 lines
358 B

import type webpack from 'webpack';
import type { IssueOptions } from './issue-options';
import type { IssuePredicate } from './issue-predicate';
interface IssueConfig {
predicate: IssuePredicate;
}
declare function createIssueConfig(compiler: webpack.Compiler, options: IssueOptions | undefined): IssueConfig;
export { IssueConfig, createIssueConfig };