fork-ts-checker-webpack-plugin
Version:
Runs typescript type checker and linter on separate process.
6 lines (5 loc) • 329 B
TypeScript
import type { IssuePredicate } from './issue-predicate';
import type { Issue } from './index';
type IssueMatch = Partial<Pick<Issue, 'severity' | 'code' | 'file'>>;
declare function createIssuePredicateFromIssueMatch(context: string, match: IssueMatch): IssuePredicate;
export { IssueMatch, createIssuePredicateFromIssueMatch };