fix(structxports) forgot to export top level types

This commit is contained in:
Jacob Nguyen
2022-03-26 01:41:15 -05:00
parent c002c2782b
commit cf708b6e37

View File

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