From 3a2d5d44fc88b54700c4a5cc8909fd9d5ea49697 Mon Sep 17 00:00:00 2001 From: Matthew Date: Sat, 9 Nov 2024 18:14:49 -0500 Subject: [PATCH] type fixes for DiscordEvent.ts --- util/DiscordEvent.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/DiscordEvent.ts b/util/DiscordEvent.ts index e75f161..2259961 100644 --- a/util/DiscordEvent.ts +++ b/util/DiscordEvent.ts @@ -8,5 +8,5 @@ export default abstract class DiscordEvent { this.client = client; this.execute = this.execute.bind(this); } - public abstract execute(...args: any[]): Error | Promise; + public abstract execute(...args: never[]): Error | Promise; }