diff options
Diffstat (limited to 'cli/js/web/timers.ts')
-rw-r--r-- | cli/js/web/timers.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/js/web/timers.ts b/cli/js/web/timers.ts index ff18543fa..90b6bba94 100644 --- a/cli/js/web/timers.ts +++ b/cli/js/web/timers.ts @@ -179,7 +179,8 @@ function fire(timer: Timer): void { callback(); } -export type Args = unknown[]; +// eslint-disable-next-line @typescript-eslint/no-explicit-any +export type Args = any[]; function checkThis(thisArg: unknown): void { if (thisArg !== null && thisArg !== undefined && thisArg !== globalThis) { |