UNPKG

ts-checker-rspack-plugin

Version:

Runs typescript type checker and linter on separate process.

6 lines (5 loc) 316 B
import type { FilesChange } from '../../files-change'; import type { Issue, IssueDefaultSeverity } from '../../issue'; declare const getIssuesWorker: (change: FilesChange, watching: boolean, defaultSeverity: IssueDefaultSeverity) => Promise<Issue[]>; export type GetIssuesWorker = typeof getIssuesWorker; export {};