UNPKG

ts-checker-rspack-plugin

Version:

Runs typescript type checker and linter on separate process.

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