From cf708b6e37e145fc8de2f7312348ba5dd8fd3c11 Mon Sep 17 00:00:00 2001 From: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Date: Sat, 26 Mar 2022 01:41:15 -0500 Subject: [PATCH] fix(structxports) forgot to export top level types --- src/handler/structures/structxports.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 };