bump libs
migrate to typescript 6 remove ytdl feature
This commit is contained in:
+2
-2
@@ -9,7 +9,7 @@ export abstract class Command {
|
||||
command?: string | string[];
|
||||
argsMode: ArgsMode = "none";
|
||||
|
||||
requirements?: Requirements = null;
|
||||
requirements?: Requirements | null = null;
|
||||
title?: string;
|
||||
description?: string;
|
||||
|
||||
@@ -24,7 +24,7 @@ export abstract class Command {
|
||||
|
||||
abstract execute(
|
||||
msg: Message,
|
||||
match?: RegExpExecArray
|
||||
match?: RegExpExecArray | null
|
||||
): Promise<void>;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user