Skip to main content

CommandManager

The main hub for creating and managing commands.

warning

You should never have to construct this class yourself.

import { client } from 'beapi-core';

client.commands.register(...);

Constructor

new CommandManager(client);
PARAMETERTYPEOPTIONALDEFAULTDESCRIPTION
clientClientnullConstructed Client instance.

Methods

createHandler

Creates a new command handler allowing for a different prefix and more customizations.

createHandler(prefix);
PARAMETERTYPEOPTIONALDEFAULTDESCRIPTION
prefixstringundefinedPrefix new handler should use.

Returns

CommandHandler


removeHandler

Removes a custom handler.

removeHandler(prefix);
PARAMETERTYPEOPTIONALDEFAULTDESCRIPTION
prefixstringundefinedPrefix of handler.

Returns

void


getHandler

Gets a custom handler.

getHandler(prefix);
PARAMETERTYPEOPTIONALDEFAULTDESCRIPTION
prefixstringundefinedPrefix of handler.

Returns

CommandHandler | undefined


setHandler

Sets a custom handler.

setHandler(prefix, handler);
PARAMETERTYPEOPTIONALDEFAULTDESCRIPTION
prefixstringundefinedPrefix of handler.
handlerCommandHandlerundefinedCommandHandler instance.

Returns

void


register

Register a command with the default handler.

register(options, cb);
PARAMETERTYPEOPTIONALDEFAULTDESCRIPTION
optionsCommandOptionsundefinedOptions for command.
cbCommandCallbackundefinedCallback function called on usage.

Returns

void


unregister

Unregister a command on the default handler.

unregister(name);
PARAMETERTYPEOPTIONALDEFAULTDESCRIPTION
namestringundefinedName of the command.

Returns

void


get

Gets a command on the default handler.

get(name);
PARAMETERTYPEOPTIONALDEFAULTDESCRIPTION
namestringundefinedName of the command.

Returns

Command | undefined


getAll

Gets all commands on the default handler.

getAll();

Returns

Map<string, Command>


disable

Disables default command handler (useful cause current one is temporary, whoops).

disable();

Returns

void