UNPKG

ts-checker-rspack-plugin

Version:

Runs typescript type checker and linter on separate process.

6 lines (5 loc) 333 B
import type { Issue } from './index'; type IssuePredicate = (issue: Issue) => boolean; declare function createTrivialIssuePredicate(result: boolean): IssuePredicate; declare function composeIssuePredicates(predicates: IssuePredicate[]): IssuePredicate; export { IssuePredicate, createTrivialIssuePredicate, composeIssuePredicates };