1 | import { Problem } from '@hint/utils-types';
|
2 | import { UserConfig } from '@hint/utils';
|
3 | import { HintResources } from '../types';
|
4 | export declare type FormatterOptions = {
|
5 | config?: UserConfig;
|
6 | date?: string;
|
7 | isScanner?: boolean;
|
8 | language?: string;
|
9 | noGenerateFiles?: boolean;
|
10 | output?: string;
|
11 | resources?: HintResources;
|
12 | scanTime?: number;
|
13 | status?: string;
|
14 | target?: string;
|
15 | version?: string;
|
16 | };
|
17 | export interface IFormatter {
|
18 | format(problems: Problem[], options?: FormatterOptions): void;
|
19 | }
|
20 | export interface IFormatterConstructor {
|
21 | new (): IFormatter;
|
22 | }
|
23 |
|
\ | No newline at end of file |