zumito-framework 1.6.5 → 1.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -179,7 +179,7 @@ export declare abstract class Command {
|
|
|
179
179
|
* @name type
|
|
180
180
|
* @description The type of the command. This is used to determine how the command should be executed.
|
|
181
181
|
* @type {CommandType}
|
|
182
|
-
* @default CommandType.
|
|
182
|
+
* @default CommandType.any
|
|
183
183
|
* @example
|
|
184
184
|
* ```ts
|
|
185
185
|
* export class PingCommand extends Command {
|
|
@@ -177,7 +177,7 @@ export class Command {
|
|
|
177
177
|
* @name type
|
|
178
178
|
* @description The type of the command. This is used to determine how the command should be executed.
|
|
179
179
|
* @type {CommandType}
|
|
180
|
-
* @default CommandType.
|
|
180
|
+
* @default CommandType.any
|
|
181
181
|
* @example
|
|
182
182
|
* ```ts
|
|
183
183
|
* export class PingCommand extends Command {
|
|
@@ -198,7 +198,7 @@ export class Command {
|
|
|
198
198
|
* ```
|
|
199
199
|
* @see {@link CommandType}
|
|
200
200
|
*/
|
|
201
|
-
type = CommandType.
|
|
201
|
+
type = CommandType.any;
|
|
202
202
|
parent;
|
|
203
203
|
binds;
|
|
204
204
|
async executePrefixCommand({ message, args, client, framework, trans, }) {
|