diff options
Diffstat (limited to 'log/test.ts')
-rw-r--r-- | log/test.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/log/test.ts b/log/test.ts index c42c7ed38..9be1ec2a1 100644 --- a/log/test.ts +++ b/log/test.ts @@ -16,8 +16,9 @@ class TestHandler extends log.handlers.BaseHandler { } test(async function defaultHandlers(): Promise<void> { - // eslint-disable-next-line @typescript-eslint/no-explicit-any - const loggers: { [key: string]: (msg: string, ...args: any[]) => void } = { + const loggers: { + [key: string]: (msg: string, ...args: unknown[]) => void; + } = { DEBUG: log.debug, INFO: log.info, WARNING: log.warning, |