Comparing version 2.4.3 to 2.4.4
{ | ||
"name": "abslog", | ||
"version": "2.4.3", | ||
"version": "2.4.4", | ||
"description": "An abstract logger - Enables adding logging to modules without adding a dependency to a full log library. ", | ||
@@ -5,0 +5,0 @@ "main": "lib/log.js", |
declare namespace _exports { | ||
export { LogFunction, AbstractLogger }; | ||
export { LogFunction, AbstractLoggerOptions, ValidLogger }; | ||
} | ||
declare function _exports(logger: any): AbstractLogger; | ||
declare function _exports(logger: AbstractLoggerOptions): ValidLogger; | ||
export = _exports; | ||
type LogFunction = (...args: any) => void; | ||
type AbstractLogger = { | ||
type AbstractLoggerOptions = ValidLogger | Console | undefined; | ||
type ValidLogger = { | ||
trace: LogFunction; | ||
@@ -9,0 +10,0 @@ debug: LogFunction; |
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
11720
91