UNPKG

641 BTypeScriptView Raw
1import { Problem } from '@hint/utils-types';
2import { UserConfig } from '@hint/utils';
3import { HintResources } from '../types';
4export 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};
17export interface IFormatter {
18 format(problems: Problem[], options?: FormatterOptions): void;
19}
20export interface IFormatterConstructor {
21 new (): IFormatter;
22}
23//# sourceMappingURL=formatters.d.ts.map
\No newline at end of file