UNPKG

ts-checker-rspack-plugin

Version:

Runs typescript type checker and linter on separate process.

7 lines (6 loc) 345 B
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 { createIssuePredicateFromIssueMatch }; export type { IssueMatch };