diff --git a/src/index.ts b/src/index.ts index 79418f0..884a8f2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -110,7 +110,7 @@ export type MethodConfig = SharedConfig & { tags?: string[]; }; -export type GenericLogFunction = (input: string) => any; +export type GenericLogFunction = (...input: unknown[]) => any; export type MethodList = { [k in A]: string | MethodConfig };