@types/winston
Advanced tools
Comparing version 2.3.5 to 2.3.6
@@ -18,3 +18,3 @@ // Type definitions for winston 2.3 | ||
interface AbstractConfigSetColors { | ||
[key: string]: string; | ||
[key: string]: string | string[]; | ||
} | ||
@@ -41,12 +41,12 @@ | ||
interface CliConfigSetColors extends AbstractConfigSetColors { | ||
error: string; | ||
warn: string; | ||
help: string; | ||
data: string; | ||
info: string; | ||
debug: string; | ||
prompt: string; | ||
verbose: string; | ||
input: string; | ||
silly: string; | ||
error: string | string[]; | ||
warn: string | string[]; | ||
help: string | string[]; | ||
data: string | string[]; | ||
info: string | string[]; | ||
debug: string | string[]; | ||
prompt: string | string[]; | ||
verbose: string | string[]; | ||
input: string | string[]; | ||
silly: string | string[]; | ||
} | ||
@@ -62,8 +62,8 @@ interface NpmConfigSetLevels extends AbstractConfigSetLevels { | ||
interface NpmConfigSetColors extends AbstractConfigSetColors { | ||
error: string; | ||
warn: string; | ||
info: string; | ||
verbose: string; | ||
debug: string; | ||
silly: string; | ||
error: string | string[]; | ||
warn: string | string[]; | ||
info: string | string[]; | ||
verbose: string | string[]; | ||
debug: string | string[]; | ||
silly: string | string[]; | ||
} | ||
@@ -81,10 +81,10 @@ interface SyslogConfigSetLevels extends AbstractConfigSetLevels { | ||
interface SyslogConfigSetColors extends AbstractConfigSetColors { | ||
emerg: string; | ||
alert: string; | ||
crit: string; | ||
error: string; | ||
warning: string; | ||
notice: string; | ||
info: string; | ||
debug: string; | ||
emerg: string | string[]; | ||
alert: string | string[]; | ||
crit: string | string[]; | ||
error: string | string[]; | ||
warning: string | string[]; | ||
notice: string | string[]; | ||
info: string | string[]; | ||
debug: string | string[]; | ||
} | ||
@@ -91,0 +91,0 @@ |
{ | ||
"name": "@types/winston", | ||
"version": "2.3.5", | ||
"version": "2.3.6", | ||
"description": "TypeScript definitions for winston", | ||
@@ -9,11 +9,14 @@ "license": "MIT", | ||
"name": "bonnici", | ||
"url": "https://github.com/bonnici" | ||
"url": "https://github.com/bonnici", | ||
"githubUsername": "bonnici" | ||
}, | ||
{ | ||
"name": "Peter Harris", | ||
"url": "https://github.com/codeanimal" | ||
"url": "https://github.com/codeanimal", | ||
"githubUsername": "codeanimal" | ||
}, | ||
{ | ||
"name": "DABH", | ||
"url": "https://github.com/DABH" | ||
"url": "https://github.com/DABH", | ||
"githubUsername": "DABH" | ||
} | ||
@@ -30,4 +33,4 @@ ], | ||
}, | ||
"typesPublisherContentHash": "6762ff7ad3a1902e29955215b7cfc106a7ad095506524b3b4915ad5bef0fd3b7", | ||
"typesPublisherContentHash": "f7452b4ae98a30b2445787c53459b75976060b52976978cd4fb7e16e33abdadb", | ||
"typeScriptVersion": "2.0" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Mon, 21 Aug 2017 22:03:22 GMT | ||
* Last updated: Tue, 19 Sep 2017 18:15:21 GMT | ||
* Dependencies: http, node | ||
@@ -14,0 +14,0 @@ * Global values: none |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18901