diff --git a/src/handler/structures/structxports.ts b/src/handler/structures/structxports.ts index ec02939..376ffd7 100644 --- a/src/handler/structures/structxports.ts +++ b/src/handler/structures/structxports.ts @@ -1,9 +1,11 @@ import Context from './context'; -import * as Modules from './commands/module'; +import type { SlashCommand, TextCommand, BothCommand } from './commands/module'; import type Wrapper from './wrapper'; export { Context, - Modules, + SlashCommand, + TextCommand, + BothCommand, Wrapper };