You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TimeoutCallback is defined like so: export declare type TimeoutCallback = (args?: any[]) => void;
but it should be like this: export declare type TimeoutCallback = (...args: any[]) => unknown;
Reproduction instruction
this.setTimeout(
(foo: string, bar: string) => {
// Any content
},
1000,
'foo',
'bar',
);