fix: export CommandCategory

This commit is contained in:
2026-01-14 02:31:51 -03:00
parent 4718e68c78
commit d3a6decef6
+1 -1
View File
@@ -43,7 +43,7 @@ export interface CommandCategoryInfo {
description: string;
}
interface CommandCategory {
export interface CommandCategory {
info: CommandCategoryInfo;
commands: Command[];
}