A prefix-accessible command alias.

This is a version of the NameAccessibleCommandTypeAlias type that allows for a custom prefix.

interface PrefixAccessibleCommandTypeAlias {
    commandName: string;
    prefix: string;
    type: "prefixAccessibleAlias";
}

Hierarchy (View Summary)

Properties

commandName: string

The name of the command.

prefix: string

The prefix of the command.

config.chatCommandPrefix
type: "prefixAccessibleAlias"

The type of the command alias.