diff --git a/package.json b/package.json index 764f165..735973d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lifi/abi-parser", - "version": "0.0.1-alpha.13", + "version": "0.0.1-alpha.14", "publishConfig": { "access": "public" }, diff --git a/src/lib/logger.ts b/src/lib/logger.ts index 8bd69e1..98180f4 100644 --- a/src/lib/logger.ts +++ b/src/lib/logger.ts @@ -5,7 +5,8 @@ import winston from 'winston' type LogLevel = 'error' | 'warn' | 'info' | 'debug' export type Logger = { - [method in LogLevel]: (message: string, info?: unknown) => void + // eslint-disable-next-line @typescript-eslint/no-explicit-any + [method in LogLevel]: (message: string, info?: any) => void } const prettyError = new PrettyError()