Files
2023-11-25 18:12:47 -05:00

4 lines
107 B
TypeScript

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