From f8c5bfc6c3485d2ad7b7963111ba6b57fc14e2a8 Mon Sep 17 00:00:00 2001 From: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Date: Sat, 26 Mar 2022 01:43:17 -0500 Subject: [PATCH] fix(structxports) added top lvl module type --- src/handler/structures/structxports.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/handler/structures/structxports.ts b/src/handler/structures/structxports.ts index 376ffd7..57033d3 100644 --- a/src/handler/structures/structxports.ts +++ b/src/handler/structures/structxports.ts @@ -1,5 +1,5 @@ import Context from './context'; -import type { SlashCommand, TextCommand, BothCommand } from './commands/module'; +import type { SlashCommand, TextCommand, BothCommand, Module } from './commands/module'; import type Wrapper from './wrapper'; export { @@ -7,5 +7,6 @@ export { SlashCommand, TextCommand, BothCommand, + Module, Wrapper };