@witchcraft/spellcraft
    Preparing search index...

    Type Alias ShortcutsSetEntries

    type ShortcutsSetEntries = {
        "entries@add": {
            error: typeof DUPLICATE_SHORTCUT | typeof UNKNOWN_COMMAND | ChainError;
            hooks: GetShortcutHooks<"entries@add">;
            manager: BaseShortcutsManager & PickManager<"options", "sorter">;
            val: Shortcut;
        };
        "entries@remove": {
            error: typeof MISSING;
            hooks: GetShortcutHooks<"entries@remove">;
            manager: BaseShortcutsManager;
            val: Shortcut;
        };
    }
    Index

    Properties

    "entries@add": {
        error: typeof DUPLICATE_SHORTCUT | typeof UNKNOWN_COMMAND | ChainError;
        hooks: GetShortcutHooks<"entries@add">;
        manager: BaseShortcutsManager & PickManager<"options", "sorter">;
        val: Shortcut;
    }
    "entries@remove": {
        error: typeof MISSING;
        hooks: GetShortcutHooks<"entries@remove">;
        manager: BaseShortcutsManager;
        val: Shortcut;
    }