@witchcraft/spellcraft
    Preparing search index...

    Type Alias CommandsSetEntries

    type CommandsSetEntries = {
        "entries@add": {
            error: typeof DUPLICATE_COMMAND;
            hooks: GetCommandHooks<"entries@add">;
            manager: BaseCommandsManager;
            val: Command;
        };
        "entries@remove": {
            error: typeof COMMAND_IN_USE
            | typeof MISSING;
            hooks: GetCommandHooks<"entries@remove">;
            manager: BaseCommandsManager & Pick<Manager, "shortcuts" | "keys">;
            val: Command;
        };
    }
    Index

    Properties

    "entries@add": {
        error: typeof DUPLICATE_COMMAND;
        hooks: GetCommandHooks<"entries@add">;
        manager: BaseCommandsManager;
        val: Command;
    }
    "entries@remove": {
        error: typeof COMMAND_IN_USE | typeof MISSING;
        hooks: GetCommandHooks<"entries@remove">;
        manager: BaseCommandsManager & Pick<Manager, "shortcuts" | "keys">;
        val: Command;
    }