diff --git a/types/backoff/index.d.ts b/types/backoff/index.d.ts index 1c2f1ea605..404b01c4b2 100644 --- a/types/backoff/index.d.ts +++ b/types/backoff/index.d.ts @@ -101,7 +101,7 @@ export function call(wrappedFunction: (t1: T1, t2: T2, t3: T3 export function call(wrappedFunction: (t1: T1, t2: T2, t3: T3, cb: (err: E) => void) => void, t1: T1, t2: T2, t3: T3, callback: (err: E) => void): TypedFunctionCall<[T1, T2, T3], E>; -export function call(wrappedFunction: (...args: any[]) => void, ...args: any[]): FunctionCallAny; +export function call(wrappedFunction: (...args: any[]) => void, ...args: any[]): FunctionCallAny; export class Backoff extends EventEmitter { /**