formatter.d.ts 189 B

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