mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-03 23:42:50 +00:00
backoff: Remove unnecessary type parameter (#20362)
This commit is contained in:
parent
cf92e80edc
commit
0bdab33bba
2
types/backoff/index.d.ts
vendored
2
types/backoff/index.d.ts
vendored
@ -101,7 +101,7 @@ export function call<T1, T2, T3, R1, E>(wrappedFunction: (t1: T1, t2: T2, t3: T3
|
||||
export function call<T1, T2, T3, E>(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<R>(wrappedFunction: (...args: any[]) => void, ...args: any[]): FunctionCallAny;
|
||||
export function call(wrappedFunction: (...args: any[]) => void, ...args: any[]): FunctionCallAny;
|
||||
|
||||
export class Backoff extends EventEmitter {
|
||||
/**
|
||||
|
||||
Loading…
Reference in New Issue
Block a user