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.
 
 
 
 
 

10 lines
471 B

import type * as rspack from '@rspack/core';
import type { IssueOptions } from './issue-options';
import type { IssuePredicate } from './issue-predicate';
import type { IssueDefaultSeverity } from './issue-severity';
interface IssueConfig {
predicate: IssuePredicate;
defaultSeverity: IssueDefaultSeverity;
}
declare function createIssueConfig(compiler: rspack.Compiler, options: IssueOptions | undefined): IssueConfig;
export { IssueConfig, createIssueConfig };