diff --git a/lib/log.ts b/lib/log.ts index e448573..f27b2f3 100644 --- a/lib/log.ts +++ b/lib/log.ts @@ -37,7 +37,7 @@ interface Options { silent?: boolean } -type ConsoleArgs = [object | string, ...string[]]; +type ConsoleArgs = any[]; type writeLogF = (...args: ConsoleArgs) => void;