Formatter.d.ts 107 B

123
  1. import { Issue } from '../issue';
  2. declare type Formatter = (issue: Issue) => string;
  3. export { Formatter };