- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
9 lines
363 B
TypeScript
9 lines
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 };
|