fork-ts-checker-webpack-plugin
Version:
Runs typescript type checker and linter on separate process.
6 lines (5 loc) • 341 B
TypeScript
import type { Issue } from './index';
declare type IssuePredicate = (issue: Issue) => boolean;
declare function createTrivialIssuePredicate(result: boolean): IssuePredicate;
declare function composeIssuePredicates(predicates: IssuePredicate[]): IssuePredicate;
export { IssuePredicate, createTrivialIssuePredicate, composeIssuePredicates };