Files
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 };