UNPKG

1.34 kBTypeScriptView Raw
1/** The current version of karma */
2export const VERSION: string;
3/** The default port used for the karma server */
4export const DEFAULT_PORT: string | number;
5/** The default hostname used for the karma server */
6export const DEFAULT_HOSTNAME: string;
7/** The default listen address used for the karma server */
8export const DEFAULT_LISTEN_ADDR: string;
9/** The value for disabling logs */
10export const LOG_DISABLE: 'OFF';
11/** The value for the log `error` level */
12export const LOG_ERROR: 'ERROR';
13/** The value for the log `warn` level */
14export const LOG_WARN: 'WARN';
15/** The value for the log `info` level */
16export const LOG_INFO: 'INFO';
17/** The value for the log `debug` level */
18export const LOG_DEBUG: 'DEBUG';
19export const LOG_LOG: 'LOG';
20/** An array of log levels in descending order, i.e. LOG_DISABLE, LOG_ERROR, LOG_WARN, LOG_LOG, LOG_INFO, and LOG_DEBUG */
21export const LOG_PRIORITIES: ['OFF', 'ERROR', 'WARN', 'LOG', 'INFO', 'DEBUG'];
22
23/** The default color pattern for log output */
24export const COLOR_PATTERN: string;
25/** The default pattern for log output without color */
26export const NO_COLOR_PATTERN: string;
27/** The default console appender */
28export const CONSOLE_APPENDER: {
29 type: string;
30 layout: {
31 type: string;
32 pattern: string;
33 };
34};
35/** The exit code */
36export const EXIT_CODE: string;