forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- constants import changed - re-export redefined - contants module reshape to comply with native module details. Using namespace import and named import for constant required TSLint config update to allow named imports: see: palantir/tslint#4524 /cc @43081j Thanks!
- Loading branch information
1 parent
73d9659
commit 92a7b31
Showing
3 changed files
with
47 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,36 @@ | ||
declare const constants: Constants; | ||
/** The current version of karma */ | ||
export const VERSION: string; | ||
/** The default port used for the karma server */ | ||
export const DEFAULT_PORT: string | number; | ||
/** The default hostname used for the karma server */ | ||
export const DEFAULT_HOSTNAME: string; | ||
/** The default listen address used for the karma server */ | ||
export const DEFAULT_LISTEN_ADDR: string; | ||
/** The value for disabling logs */ | ||
export const LOG_DISABLE: 'OFF'; | ||
/** The value for the log `error` level */ | ||
export const LOG_ERROR: 'ERROR'; | ||
/** The value for the log `warn` level */ | ||
export const LOG_WARN: 'WARN'; | ||
/** The value for the log `info` level */ | ||
export const LOG_INFO: 'INFO'; | ||
/** The value for the log `debug` level */ | ||
export const LOG_DEBUG: 'DEBUG'; | ||
export const LOG_LOG: 'LOG'; | ||
/** An array of log levels in descending order, i.e. LOG_DISABLE, LOG_ERROR, LOG_WARN, LOG_LOG, LOG_INFO, and LOG_DEBUG */ | ||
export const LOG_PRIORITIES: ['OFF', 'ERROR', 'WARN', 'LOG', 'INFO', 'DEBUG']; | ||
|
||
interface Constants { | ||
/** The current version of karma */ | ||
VERSION: string; | ||
/** The default port used for the karma server */ | ||
DEFAULT_PORT: string | number; | ||
/** The default hostname used for the karma server */ | ||
DEFAULT_HOSTNAME: string; | ||
/** The default listen address used for the karma server */ | ||
DEFAULT_LISTEN_ADDR: string; | ||
/** The value for disabling logs */ | ||
LOG_DISABLE: 'OFF'; | ||
/** The value for the log `error` level */ | ||
LOG_ERROR: 'ERROR'; | ||
/** The value for the log `warn` level */ | ||
LOG_WARN: 'WARN'; | ||
/** The value for the log `info` level */ | ||
LOG_INFO: 'INFO'; | ||
/** The value for the log `debug` level */ | ||
LOG_DEBUG: 'DEBUG'; | ||
LOG_LOG: 'LOG'; | ||
/** An array of log levels in descending order, i.e. LOG_DISABLE, LOG_ERROR, LOG_WARN, LOG_LOG, LOG_INFO, and LOG_DEBUG */ | ||
LOG_PRIORITIES: ['OFF', 'ERROR', 'WARN', 'LOG', 'INFO', 'DEBUG']; | ||
|
||
/** The default color pattern for log output */ | ||
COLOR_PATTERN: string; | ||
/** The default pattern for log output without color */ | ||
NO_COLOR_PATTERN: string; | ||
/** The default console appender */ | ||
CONSOLE_APPENDER: { | ||
/** The default color pattern for log output */ | ||
export const COLOR_PATTERN: string; | ||
/** The default pattern for log output without color */ | ||
export const NO_COLOR_PATTERN: string; | ||
/** The default console appender */ | ||
export const CONSOLE_APPENDER: { | ||
type: string; | ||
layout: { | ||
type: string; | ||
layout: { | ||
type: string; | ||
pattern: string; | ||
}; | ||
pattern: string; | ||
}; | ||
/** The exit code */ | ||
EXIT_CODE: string; | ||
} | ||
|
||
export = constants; | ||
}; | ||
/** The exit code */ | ||
export const EXIT_CODE: string; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,11 @@ | ||
{ "extends": "dtslint/dt.json" } | ||
{ | ||
"extends": "dtslint/dt.json", | ||
"rules": { | ||
"no-duplicate-imports": [ | ||
true, | ||
{ | ||
"allow-namespace-imports": true | ||
} | ||
] | ||
} | ||
} |