Formatter.d.ts 107 Bytes
import { Issue } from '../issue';
declare type Formatter = (issue: Issue) => string;
export { Formatter };