type fixes for DiscordEvent.ts

pull/3/head
Matthew 2024-11-09 18:14:49 -05:00
parent 0ee34462bf
commit 3a2d5d44fc
Signed by: matthew
SSH Key Fingerprint: SHA256:piIXekA9q1p0ZGi4ogFbNY1embip5Ytbi3v8AZ8UYq4
1 changed files with 1 additions and 1 deletions

View File

@ -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<void>;
public abstract execute(...args: never[]): Error | Promise<void>;
}