123456789101112131415161718 |
- export declare type LogLevel = "INFO" | "WARN" | "ERROR";
- export interface Options {
- readonly configFile: string;
- readonly extensions: ReadonlyArray<string>;
- readonly baseUrl: string | undefined;
- readonly silent: boolean;
- readonly logLevel: LogLevel;
- readonly logInfoToStdOut: boolean;
- readonly context: string | undefined;
- readonly colors: boolean;
- readonly mainFields: string[];
- readonly references: string[] | undefined;
- }
- export declare function getOptions(rawOptions: {}): Options;
|