UNPKG

ts-checker-rspack-plugin

Version:

Runs typescript type checker and linter on separate process.

10 lines (9 loc) 392 B
import type { IssuePosition } from './issue-position'; interface IssueLocation { start: IssuePosition; end: IssuePosition; } declare function compareIssueLocations(locationA?: IssueLocation, locationB?: IssueLocation): number; declare function formatIssueLocation(location: IssueLocation): string; export { compareIssueLocations, formatIssueLocation }; export type { IssueLocation };