Files
Shifted/node_modules/fork-ts-checker-webpack-plugin/lib/formatter/formatter.d.ts
2026-02-10 01:14:19 +00:00

5 lines
189 B
TypeScript

import type { Issue } from '../issue';
declare type Formatter = (issue: Issue) => string;
declare type FormatterPathType = 'relative' | 'absolute';
export { Formatter, FormatterPathType };