vite-plugin-checker
Version:
Vite plugin that runs TypeScript type checker on a separate process.
10 lines (9 loc) • 473 B
TypeScript
import { CreateDiagnostic } from "../../types.js";
import { NormalizedDiagnostic } from "../../logger.js";
import { DisplayTarget } from "./types.js";
//#region src/checkers/oxlint/diagnostics.d.ts
declare const createDiagnostic: CreateDiagnostic<'oxlint'>;
declare function dispatchDiagnostics(diagnostics: NormalizedDiagnostic[], targets: Set<DisplayTarget>): void;
//#endregion
export { createDiagnostic, dispatchDiagnostics };
//# sourceMappingURL=diagnostics.d.ts.map