UNPKG

fork-ts-checker-webpack-plugin

Version:
9 lines (8 loc) 363 B
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 };