fork-ts-checker-webpack-plugin
Version:
Runs typescript type checker and linter on separate process.
9 lines (8 loc) • 363 B
TypeScript
import type * as 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 };