1 | import { IFormatterConstructor } from './types/formatters';
|
2 | import { IConnectorConstructor } from './types/connector';
|
3 | import { IParserConstructor } from './types/parser';
|
4 | import { IHintConstructor } from './types/hints';
|
5 | export * from './types/connector';
|
6 | export * from './types/events';
|
7 | export * from './types/formatters';
|
8 | export * from './types/network';
|
9 | export * from './types/hints';
|
10 | export * from './types/parser';
|
11 | export * from './types/analyzer';
|
12 | export * from './types/analyzer-error';
|
13 | export declare type Resource = IConnectorConstructor | IFormatterConstructor | IHintConstructor;
|
14 | export declare type CLIOptions = {
|
15 | _: string[];
|
16 | 'analytics-debug': boolean;
|
17 | config: string;
|
18 | debug: boolean;
|
19 | help: boolean;
|
20 | language: string;
|
21 | output: string;
|
22 | version: boolean;
|
23 | watch: boolean;
|
24 | formatters: string;
|
25 | hints: string;
|
26 | };
|
27 | export declare type HintResources = {
|
28 | connector: IConnectorConstructor | null;
|
29 | formatters: IFormatterConstructor[];
|
30 | incompatible: string[];
|
31 | missing: string[];
|
32 | parsers: IParserConstructor[];
|
33 | hints: IHintConstructor[];
|
34 | };
|
35 | export declare type StringKeyOf<T> = Extract<keyof T, string>;
|
36 |
|
\ | No newline at end of file |