@witchcraft/spellcraft
    Preparing search index...

    Type Alias CommandSetEntries

    type CommandSetEntries = {
        condition: Unmanaged<"condition">;
        description: Unmanaged<"description">;
        execute: Unmanaged<"execute">;
        name: {
            error:
                | typeof COMMAND_IN_USE
                | typeof DUPLICATE_COMMAND
                | typeof MULTIPLE_ERRORS;
            hooks: GetCommandHooks<"name">;
            manager: Pick<Manager, "commands" | "shortcuts" | "keys"> & PickManager<
                "options",
                "stringifier",
            >;
            val: string;
        };
    }
    Index

    Properties

    condition: Unmanaged<"condition">
    description: Unmanaged<"description">
    execute: Unmanaged<"execute">
    name: {
        error:
            | typeof COMMAND_IN_USE
            | typeof DUPLICATE_COMMAND
            | typeof MULTIPLE_ERRORS;
        hooks: GetCommandHooks<"name">;
        manager: Pick<Manager, "commands" | "shortcuts" | "keys"> & PickManager<
            "options",
            "stringifier",
        >;
        val: string;
    }