From d3a6decef67101f8587f09f7da11f9ebdcf00dd7 Mon Sep 17 00:00:00 2001 From: neru Date: Wed, 14 Jan 2026 02:31:51 -0300 Subject: [PATCH] fix: export CommandCategory --- src/commands.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands.ts b/src/commands.ts index 98133df..6c011c7 100644 --- a/src/commands.ts +++ b/src/commands.ts @@ -43,7 +43,7 @@ export interface CommandCategoryInfo { description: string; } -interface CommandCategory { +export interface CommandCategory { info: CommandCategoryInfo; commands: Command[]; }