fix(structxports) added top lvl module type

This commit is contained in:
Jacob Nguyen
2022-03-26 01:43:17 -05:00
parent cf708b6e37
commit f8c5bfc6c3

View File

@@ -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
};